|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Property | |
com.arsdigita.domain | Domain Objects provide an application logic tier between the persistent storage and presentation tiers. |
com.arsdigita.formbuilder.ui | The Form Builder UI provides a number of embeddable bebop components to facilitate integration of the form builder service with applications. |
com.arsdigita.lucene | This package is now deprecated. |
com.arsdigita.metadata | Provides a set of classes to store metadata about data object types and the database schema used to persist data objects. |
com.arsdigita.persistence.metadata | Provides a set of classes to store metadata about data object types and the database schema used to persist data objects. |
com.arsdigita.search.lucene | Provides APIs to be used by query engine implementors to interact with the Lucene search engine. |
com.arsdigita.versioning | Provides for versioning of data objects. |
com.redhat.persistence.pdl |
Uses of Property in com.arsdigita.domain |
Methods in com.arsdigita.domain with parameters of type Property | |
String |
SimpleDomainObjectXMLFormatter.format(DomainObject obj,
String path,
Property prop,
Object value)
|
boolean |
SimpleDomainObjectTraversalAdapter.processProperty(DomainObject obj,
String path,
Property prop,
String context)
Determines whether or not to allow processing of a property, based on the property set and the processing rule |
protected void |
DomainObjectTextRenderer.handleAttribute(DomainObject obj,
String path,
Property property)
|
protected void |
DomainObjectTextRenderer.beginRole(DomainObject obj,
String path,
Property property)
|
protected void |
DomainObjectTextRenderer.endRole(DomainObject obj,
String path,
Property property)
|
protected void |
DomainObjectTextRenderer.beginAssociation(DomainObject obj,
String path,
Property property)
|
protected void |
DomainObjectTextRenderer.endAssociation(DomainObject obj,
String path,
Property property)
|
boolean |
DomainObjectTraversalAdapter.processProperty(DomainObject obj,
String path,
Property prop,
String context)
Invoked to determine whether to process a property. |
String |
DomainObjectXMLFormatter.format(DomainObject obj,
String path,
Property prop,
Object value)
|
protected abstract void |
DomainObjectTraversal.handleAttribute(DomainObject obj,
String path,
Property property)
Method called when an attribute is encountered |
protected abstract void |
DomainObjectTraversal.beginRole(DomainObject obj,
String path,
Property property)
Method called when the processing of a role starts |
protected abstract void |
DomainObjectTraversal.endRole(DomainObject obj,
String path,
Property property)
Method called when the procesing of a role completes |
protected abstract void |
DomainObjectTraversal.beginAssociation(DomainObject obj,
String path,
Property property)
Method called when the processing of an association starts |
protected abstract void |
DomainObjectTraversal.endAssociation(DomainObject obj,
String path,
Property property)
Method called when the procesing of an association completes |
protected String |
DomainObjectXMLRenderer.format(DomainObject obj,
String path,
Property prop,
Object value)
|
protected void |
DomainObjectXMLRenderer.handleAttribute(DomainObject obj,
String path,
Property property)
|
protected void |
DomainObjectXMLRenderer.beginRole(DomainObject obj,
String path,
Property property)
|
protected void |
DomainObjectXMLRenderer.endRole(DomainObject obj,
String path,
Property property)
|
protected void |
DomainObjectXMLRenderer.beginAssociation(DomainObject obj,
String path,
Property property)
|
protected void |
DomainObjectXMLRenderer.endAssociation(DomainObject obj,
String path,
Property property)
|
Uses of Property in com.arsdigita.formbuilder.ui |
Methods in com.arsdigita.formbuilder.ui with parameters of type Property | |
protected void |
FormBuilderXMLRenderer.endAssociation(DomainObject obj,
String path,
Property property)
|
protected void |
FormBuilderXMLRenderer.handleAttribute(DomainObject obj,
String path,
Property property)
This overrides the handleAttribute method to provide the special case for the PersistentComponent.ATTRIBUTE_STRING |
Uses of Property in com.arsdigita.lucene |
Constructors in com.arsdigita.lucene with parameters of type Property | |
StandardAdapter(ObjectType type,
Property id,
Property title,
Property summary,
Property[] content)
Deprecated. |
Uses of Property in com.arsdigita.metadata |
Methods in com.arsdigita.metadata that return Property | |
Property |
DynamicObjectType.addOptionalAttribute(String name,
SimpleType propertyType)
This adds an Attribute of multiplicity 0..1 which is the equivalent to adding a column to a table without a "not null" constraint |
Property |
DynamicObjectType.addOptionalAttribute(String name,
SimpleType propertyType,
int size)
This adds an Attribute of multiplicity 0..1 which is the equivalent to adding a column to a table without a "not null" constraint |
Property |
DynamicObjectType.addRequiredAttribute(String name,
SimpleType propertyType,
Object defaultValue)
This adds an Attribute of multiplicity 1..1 which is the equivalent to adding a column to a table with a "not null" constraint |
Property |
DynamicObjectType.addRequiredAttribute(String name,
SimpleType propertyType,
int size,
Object defaultValue)
This adds an Attribute of multiplicity 1..1 which is the equivalent to adding a column to a table with a "not null" constraint |
Property |
DynamicObjectType.addOptionalAssociation(String name,
ObjectType type)
Adds an optional one-way association (a role reference) to this Dynamic ObjectType. |
Property |
DynamicObjectType.addRequiredAssociation(String name,
ObjectType type,
Object defaultValue)
Adds an required one-way association (a role reference) to this Dynamic ObjectType. |
Property |
DynamicObjectType.addCollectionAssociation(String name,
ObjectType type)
Adds a multiplicitous one-way association (a role reference) to this Dynamic ObjectType. |
Property |
DynamicObjectType.addAssociation(String name,
ObjectType objType,
int mult,
Object defaultValue)
Adds a one-way association (a role reference) to this Dynamic ObjectType. |
Property |
DynamicAssociation.getProperty1()
|
Property |
DynamicAssociation.getProperty2()
|
Uses of Property in com.arsdigita.persistence.metadata |
Methods in com.arsdigita.persistence.metadata that return Property | |
Property |
ObjectType.getProperty(String name)
Returns the Property contained by this ObjectType with the given name or null if no such property exists. |
Property |
ObjectType.getDeclaredProperty(String name)
Returns the Property directly defined by this ObjectType with the given name or null if no such property exists. |
Property |
Association.getAssociatedProperty(Property prop)
Gets the associated property. |
Property |
Association.getRoleOne()
Gets the first role property. |
Property |
Association.getRoleTwo()
Gets the second role property. |
abstract Property |
CompoundType.getProperty(String name)
Gets a property that this CompoundType contains. |
Property |
Property.getAssociatedProperty()
Returns the associated property or null if there is no associated property. |
Methods in com.arsdigita.persistence.metadata with parameters of type Property | |
boolean |
ObjectType.isKeyProperty(Property p)
Returns true if the given Property is one of the key Properties on this ObjectType. |
Property |
Association.getAssociatedProperty(Property prop)
Gets the associated property. |
Uses of Property in com.arsdigita.search.lucene |
Constructors in com.arsdigita.search.lucene with parameters of type Property | |
StandardAdapter(ObjectType type,
Property id,
Property title,
Property summary,
Property[] content)
|
Uses of Property in com.arsdigita.versioning |
Methods in com.arsdigita.versioning that return Property | |
Property |
Operation.getProperty()
|
Methods in com.arsdigita.versioning with parameters of type Property | |
boolean |
Difference.Change.isModified(Property prop)
|
Object |
Difference.Change.getFrom(Property prop)
|
Object |
Difference.Change.getTo(Property prop)
|
Collection |
Difference.Change.getAdded(Property prop)
|
Collection |
Difference.Change.getRemoved(Property prop)
|
Uses of Property in com.redhat.persistence.pdl |
Methods in com.redhat.persistence.pdl with parameters of type Property | |
void |
VersioningMetadata.NodeVisitor.onVersionedProperty(Property property)
This method is called whenever we traverse a property node of the PDL AST that is marked versioned . |
void |
VersioningMetadata.NodeVisitor.onUnversionedProperty(Property property)
This method is called whenever we traverse a property node of the PDL AST that is marked unversioned . |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |