Package com.xpn.xwiki.objects
Interface PropertyInterface
-
- All Superinterfaces:
ElementInterface
- All Known Subinterfaces:
PropertyClassInterface
- All Known Implementing Classes:
BaseProperty
,BaseStringProperty
,BooleanClass
,BooleanMetaClass
,ComputedFieldClass
,ComputedFieldMetaClass
,DateClass
,DateMetaClass
,DateProperty
,DBListClass
,DBListMetaClass
,DBStringListProperty
,DBTreeListClass
,DBTreeListMetaClass
,DoubleProperty
,EmailClass
,EmailMetaClass
,FloatProperty
,GroupsClass
,GroupsMetaClass
,IntegerProperty
,LargeStringProperty
,LevelsClass
,LevelsMetaClass
,ListClass
,ListMetaClass
,ListProperty
,LongProperty
,NumberClass
,NumberMetaClass
,NumberProperty
,PageClass
,PageMetaClass
,PasswordClass
,PasswordMetaClass
,PropertyClass
,PropertyMetaClass
,StaticListClass
,StaticListMetaClass
,StringClass
,StringListProperty
,StringMetaClass
,StringProperty
,TextAreaClass
,TextAreaMetaClass
,TimezoneClass
,TimezoneMetaClass
,UsersClass
,UsersMetaClass
public interface PropertyInterface extends ElementInterface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PropertyInterface
clone()
long
getId()
Returns the identifier of this property for hibernate.BaseCollection
getObject()
void
setId(long id)
Dummy function to satisfy hibernate requirements.void
setObject(BaseCollection object)
String
toFormString()
org.dom4j.Element
toXML()
-
Methods inherited from interface com.xpn.xwiki.objects.ElementInterface
apply, getDocumentReference, getName, getReference, merge, merge, setDocumentReference, setName, toString
-
-
-
-
Method Detail
-
getId
long getId()
Returns the identifier of this property for hibernate. The return type is long since 4.0M1- Returns:
- the identifier of this property
-
setId
void setId(long id)
Dummy function to satisfy hibernate requirements.- Parameters:
id
- the identifier. A long since 4.0M1
-
getObject
BaseCollection getObject()
-
setObject
void setObject(BaseCollection object)
-
toFormString
String toFormString()
-
toXML
org.dom4j.Element toXML()
-
clone
PropertyInterface clone()
-
-