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

Packages that use Property
org.jboss.seam.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.seam.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.seam.solder.properties
 

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

Methods in org.jboss.seam.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.seam.solder.properties.query
 

Methods in org.jboss.seam.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.seam.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.