Uses of Class
org.xwiki.model.reference.EntityReference

Packages that use EntityReference
org.xwiki.model   
org.xwiki.model.reference   
 

Uses of EntityReference in org.xwiki.model
 

Methods in org.xwiki.model that return EntityReference
 EntityReference ModelContext.getCurrentEntityReference()
           
 

Methods in org.xwiki.model with parameters of type EntityReference
 void ModelContext.setCurrentEntityReference(EntityReference entityReference)
           
 

Uses of EntityReference in org.xwiki.model.reference
 

Subclasses of EntityReference in org.xwiki.model.reference
 class AttachmentReference
          Represents a reference to an Attachment (document reference and file name).
 class ClassPropertyReference
          References a property in a class in a document (the description of the property).
 class DocumentReference
          Represents a reference to a document (wiki, space and page names).
 class ObjectPropertyReference
          References a property in an object in a document (the value of the property).
 class ObjectReference
          Reference to an object in a document (by classname and index, document, space, wiki).
 class RegexEntityReference
          An EntityReference used to match another one.
 class SpaceReference
          Represents a reference to a space (space name).
 class WikiReference
          Represents a reference to a wiki (wiki name).
 

Methods in org.xwiki.model.reference that return EntityReference
 EntityReference EntityReference.clone()
          
 EntityReference EntityReference.extractReference(EntityType type)
           
 EntityReference EntityReference.getChild()
           
 EntityReference EntityReference.getParent()
           
 EntityReference EntityReference.getRoot()
           
 EntityReference EntityReferenceResolver.resolve(T entityReferenceRepresentation, EntityType type, Object... parameters)
           
 

Methods in org.xwiki.model.reference with parameters of type EntityReference
 int EntityReference.compareTo(EntityReference reference)
          
 T EntityReferenceSerializer.serialize(EntityReference reference, Object... parameters)
           
 void EntityReference.setChild(EntityReference child)
           
 void DocumentReference.setParent(EntityReference parent)
           Overridden in order to verify the validity of the passed parent
 void ObjectPropertyReference.setParent(EntityReference parent)
          
Overridden to ensure that the parent of a property is always an object.
 void AttachmentReference.setParent(EntityReference parent)
           Overridden in order to verify the validity of the passed parent
 void ClassPropertyReference.setParent(EntityReference parent)
          
 void ObjectReference.setParent(EntityReference parent)
          
Overridden to ensure that the parent of an object is always a document.
 void SpaceReference.setParent(EntityReference parent)
           Overridden in order to verify the validity of the passed parent
 void EntityReference.setParent(EntityReference parent)
           
 

Constructors in org.xwiki.model.reference with parameters of type EntityReference
AttachmentReference(EntityReference reference)
          Special constructor that transforms a generic entity reference into an AttachmentReference.
ClassPropertyReference(EntityReference reference)
          Constructor which would raise exceptions if the source entity reference does not have the appropriate type or parent, etc.
DocumentReference(EntityReference reference)
          Special constructor that transforms a generic entity reference into a DocumentReference.
EntityReference(String name, EntityType type, EntityReference parent)
           
ObjectPropertyReference(EntityReference reference)
          Constructor which would raise exceptions if the source entity reference does not have the appropriate type or parent, etc.
ObjectReference(EntityReference reference)
          Constructor which would raise exceptions if the source entity reference does not have the appropriate type or parent, etc.
RegexEntityReference(Pattern pattern, EntityType type, EntityReference parent)
           
SpaceReference(EntityReference reference)
          Special constructor that transforms a generic entity reference into a SpaceReference.
WikiReference(EntityReference reference)
          Special constructor that transforms a generic entity reference into a WikiReference.
 



Copyright © 2004-2011 XWiki. All Rights Reserved.