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 PropertyInterfaceclone()longgetId()Returns the identifier of this property for hibernate.BaseCollectiongetObject()voidsetId(long id)Dummy function to satisfy hibernate requirements.voidsetObject(BaseCollection object)StringtoFormString()org.dom4j.ElementtoXML()-
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()
-
-