Uses of Interface
org.jboss.solder.properties.Property

Packages that use Property
org.jboss.solder.config.xml.fieldset   
org.jboss.solder.config.xml.model   
org.jboss.solder.properties A set of utility classes for working with JavaBean properties, allowing properties backed by getter/setter methods or fields to be treated identically. 
org.jboss.solder.properties.query A set of utility classes for querying a class for properties based on a set of criteria. 
 

Uses of Property in org.jboss.solder.config.xml.fieldset
 

Constructors in org.jboss.solder.config.xml.fieldset with parameters of type Property
ArrayFieldSet(Property<Object> field, List<ValueXmlItem> items)
           
CollectionFieldSet(Property<Object> field, List<ValueXmlItem> items)
           
MapFieldSet(Property<Object> field, List<EntryXmlItem> items)
           
SimpleFieldValue(Class<?> javaObject, Property<Object> f, FieldValue value, Class<?> type)
           
 

Uses of Property in org.jboss.solder.config.xml.model
 

Methods in org.jboss.solder.config.xml.model that return Property
 Property<?> PropertyXmlItem.getProperty()
           
 

Constructors in org.jboss.solder.config.xml.model with parameters of type Property
PropertyXmlItem(XmlItem parent, Property<Object> property, String innerText, Class<?> overridenFieldType, String document, int lineno)
           
PropertyXmlItem(XmlItem parent, Property<Object> property, String innerText, String document, int lineno)
           
 

Uses of Property in org.jboss.solder.properties
 

Subinterfaces of Property in org.jboss.solder.properties
 interface FieldProperty<V>
           
 interface MethodProperty<V>
           
 

Methods in org.jboss.solder.properties that return Property
static
<V> Property<V>
Properties.createProperty(Member member)
          Create a JavaBean style property from the specified member
 

Uses of Property in org.jboss.solder.properties.query
 

Methods in org.jboss.solder.properties.query that return Property
 Property<V> PropertyQuery.getFirstResult()
          Get the first result from the query, causing the query to be run.
 Property<V> PropertyQuery.getFirstWritableResult()
          Get the first result from the query that is not marked as read only, causing the query to be run.
 Property<V> PropertyQuery.getSingleResult()
          Get a single result from the query, causing the query to be run.
 Property<V> PropertyQuery.getWritableSingleResult()
          Get a single result from the query that is not marked as read only, causing the query to be run.
 

Methods in org.jboss.solder.properties.query that return types with arguments of type Property
 List<Property<V>> PropertyQuery.getResultList()
          Get the result from the query, causing the query to be run.
 List<Property<V>> PropertyQuery.getWritableResultList()
          Get the non read only results from the query, causing the query to be run.
 



Copyright © 2008-2011 Seam Framework. All Rights Reserved.