Packages

c

net.liftweb.http.Factory

FactoryMaker

abstract class FactoryMaker[T] extends StackableMaker[T] with Vendor[T]

Create an object or val that is a subclass of the FactoryMaker to generate factory for a particular class as well as define session and request specific vendors and use doWith to define the vendor just for the scope of the call.

Linear Supertypes
Vendor[T], () ⇒ T, StackableMaker[T], Maker[T], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FactoryMaker
  2. Vendor
  3. Function0
  4. StackableMaker
  5. Maker
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FactoryMaker(_default: Vendor[T])(implicit man: Manifest[T])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply(): T
    Definition Classes
    Vendor → Function0
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def doWith[F](addl: PValueHolder[Maker[T]])(f: ⇒ F): F

    Changes to the stack of Makers made by this method are thread-local!

    Changes to the stack of Makers made by this method are thread-local!

    Definition Classes
    StackableMaker
  8. def doWith[F](vFunc: () ⇒ T)(f: ⇒ F): F

    Changes to the stack of Makers made by this method are thread-local!

    Changes to the stack of Makers made by this method are thread-local!

    Definition Classes
    StackableMaker
  9. def doWith[F](value: T)(f: ⇒ F): F

    Changes to the stack of Makers made by this method are thread-local!

    Changes to the stack of Makers made by this method are thread-local!

    Definition Classes
    StackableMaker
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def find(in: List[PValueHolder[Maker[T]]]): Box[T]
    Attributes
    protected
    Definition Classes
    StackableMaker
  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. implicit def make: Box[T]

    Make a Box of the instance.

    Make a Box of the instance.

    Definition Classes
    FactoryMakerStackableMakerMaker
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  21. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  22. def theDefault: PSettableValueHolder[Vendor[T]]

    An alias for the default object so that it can be accessed from Java

  23. def toString(): String
    Definition Classes
    Function0 → AnyRef → Any
  24. implicit def vend: T

    Vend an instance

    Vend an instance

    Definition Classes
    FactoryMakerVendor
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. object default extends PSettableValueHolder[Vendor[T]]

    The default function for vending an instance

  29. object request extends RequestVar[Maker[T]]

    The request specific Maker for creating an instance

  30. object session extends SessionVar[Maker[T]]

    The session-specific Maker for creating an instance

Inherited from Vendor[T]

Inherited from () ⇒ T

Inherited from StackableMaker[T]

Inherited from Maker[T]

Inherited from AnyRef

Inherited from Any

Ungrouped