trait Record[MyType <: Record[MyType]] extends FieldContainer
- Self Type
- MyType
- Alphabetic
- By Inheritance
- Record
- FieldContainer
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
def
meta: MetaRecord[MyType]
The meta record (the object that contains the meta result for this type)
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
allFields: List[Field[_, MyType]]
- Definition Classes
- Record → FieldContainer
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
asJObject: JObject
Encode this record instance as a JObject
-
def
asJSON: JsExp
Returns the JSON representation of this record
Returns the JSON representation of this record
- returns
a JsObj
-
def
asJValue: JValue
Encode this record instance as a JValue
-
def
asJsExp: JsExp
Returns the JSON representation of this record, converts asJValue to JsObj
Returns the JSON representation of this record, converts asJValue to JsObj
- returns
a JsObj
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- def copy: MyType
- def dirty_?: Boolean
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(other: Any): Boolean
- Definition Classes
- Record → AnyRef → Any
-
def
fieldByName(fieldName: String): Box[Field[_, MyType]]
Find the field by name
Find the field by name
- fieldName
-- the name of the field to find
- returns
Box[MappedField]
-
def
fields(): List[Field[_, MyType]]
Get the fields defined on the meta object for this record instance
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def runSafe[T](f: ⇒ T): T
-
final
def
safe_?: Boolean
Is it safe to make changes to the record (or should we check access control?)
-
def
saveTheRecord(): Box[MyType]
Save the instance and return the instance
-
def
setFieldsFromJValue(jvalue: JValue): Box[Unit]
Set the fields of this record from the given JValue
-
def
setFieldsFromJsonString(json: String): Box[Unit]
Sets the fields of this Record from the given JSON.
-
def
setFieldsFromReq(req: Req): Unit
Sets the fields of this Record from the given Req.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toForm(f: (MyType) ⇒ Unit): NodeSeq
Present the model as a form and execute the function on submission of the form
Present the model as a form and execute the function on submission of the form
- f
- the function to execute on form submission
- returns
the form
-
def
toForm(button: Box[String])(f: (MyType) ⇒ Unit): NodeSeq
Present the model as a form and execute the function on submission of the form
Present the model as a form and execute the function on submission of the form
- button
- If it's Full, put a submit button on the form with the value of the parameter
- f
- the function to execute on form submission
- returns
the form
-
def
toString(): String
- Definition Classes
- Record → AnyRef → Any
-
def
toXHtml: NodeSeq
Returns the HTML representation of this Record
-
def
validate: List[FieldError]
Validates this Record by calling validators for each field
Validates this Record by calling validators for each field
- returns
a List of FieldError. If this list is empty you can assume that record was validated successfully
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )