Uses of Class
org.apache.myfaces.trinidad.bean.PropertyKey

Packages that use PropertyKey
org.apache.myfaces.trinidad.bean   
org.apache.myfaces.trinidad.bean.util   
org.apache.myfaces.trinidad.component   
org.apache.myfaces.trinidad.webapp   
 

Uses of PropertyKey in org.apache.myfaces.trinidad.bean
 

Methods in org.apache.myfaces.trinidad.bean that return PropertyKey
static PropertyKey PropertyKey.createPropertyKey(java.lang.String name)
          Create a named PropertyKey, not attached to any type.
protected  PropertyKey FacesBean.Type.createPropertyKey(java.lang.String name, java.lang.Class<?> type, java.lang.Object defaultValue, int capabilities, int index)
           
protected  PropertyKey FacesBean.Type.createPropertyKey(java.lang.String name, java.lang.Class<?> type, java.lang.Object defaultValue, int capabilities, int index, PropertyKey.Mutable mutable)
           
 PropertyKey FacesBean.Type.findKey(int index)
          Find an existing key by index.
 PropertyKey FacesBean.Type.findKey(java.lang.String name)
          Find an existing key by name.
static PropertyKey PropertyKey.getDefaultPropertyKey(java.lang.String name)
          Returns a named PropertyKey of type Object
 PropertyKey FacesBean.Type.registerAlias(PropertyKey key, java.lang.String alias)
          Add an alias to an existing PropertyKey.
 PropertyKey FacesBean.Type.registerKey(java.lang.String name)
          Register a new key.
 PropertyKey FacesBean.Type.registerKey(java.lang.String name, java.lang.Class<?> type)
          Register a new key.
 PropertyKey FacesBean.Type.registerKey(java.lang.String name, java.lang.Class<?> type, int capabilities)
          Register a new key.
 PropertyKey FacesBean.Type.registerKey(java.lang.String name, java.lang.Class<?> type, java.lang.Object defaultValue)
          Register a new key.
 PropertyKey FacesBean.Type.registerKey(java.lang.String name, java.lang.Class<?> type, java.lang.Object defaultValue, int capabilities)
           
 PropertyKey FacesBean.Type.registerKey(java.lang.String name, java.lang.Class<?> type, java.lang.Object defaultValue, int capabilities, PropertyKey.Mutable mutable)
          Register a new key with a set of capabilities.
 PropertyKey FacesBean.Type.registerKey(java.lang.String name, int capabilities)
          Register a new key.
 

Methods in org.apache.myfaces.trinidad.bean that return types with arguments of type PropertyKey
 java.util.Set<PropertyKey> FacesBeanImpl.bindingKeySet()
           
 java.util.Set<PropertyKey> FacesBean.bindingKeySet()
          Returns a Set of all PropertyKeys that have ValueBindings attached.
 java.util.Iterator<PropertyKey> FacesBean.Type.keys()
          Returns the iterator of registered property keys, excluding aliases.
 java.util.Set<PropertyKey> FacesBeanImpl.keySet()
           
 java.util.Set<PropertyKey> FacesBean.keySet()
          Returns a Set of all PropertyKeys that have either lists or values attached.
 java.util.Collection<PropertyKey> FacesBean.Type.propertyKeys()
          Returns an unmodifiable Collection of registered property keys, excluding aliases.
 

Methods in org.apache.myfaces.trinidad.bean with parameters of type PropertyKey
 void FacesBeanImpl.addEntry(PropertyKey listKey, java.lang.Object value)
           
 void FacesBean.addEntry(PropertyKey listKey, java.lang.Object value)
          Add an entry to a list.
protected  void FacesBean.Type.addKey(PropertyKey key)
          Add a key to the type.
 boolean FacesBeanImpl.containsEntry(PropertyKey listKey, java.lang.Class<?> clazz)
           
 boolean FacesBean.containsEntry(PropertyKey listKey, java.lang.Class<?> clazz)
          Return true if at least one element of the list identified by this key is an instance of the specified class.
 java.util.Iterator<java.lang.Object> FacesBeanImpl.entries(PropertyKey listKey)
           
 java.util.Iterator<? extends java.lang.Object> FacesBean.entries(PropertyKey listKey)
          Returns an iterator over all entries at this key.
 java.lang.Object[] FacesBeanImpl.getEntries(PropertyKey listKey, java.lang.Class clazz)
           
 java.lang.Object[] FacesBean.getEntries(PropertyKey listKey, java.lang.Class<?> clazz)
          Return as an array all elements of this key that are instances of the specified class.
 java.lang.Object FacesBeanImpl.getLocalProperty(PropertyKey key)
           
 java.lang.Object FacesBean.getLocalProperty(PropertyKey key)
          Return a property, ignoring any value bindings.
protected  java.lang.Object FacesBeanImpl.getLocalPropertyImpl(PropertyKey key)
           
 java.lang.Object FacesBeanImpl.getProperty(PropertyKey key)
           
 java.lang.Object FacesBean.getProperty(PropertyKey key)
          Returns a property.
 java.lang.Object FacesBeanImpl.getRawProperty(PropertyKey key)
          Gets the current unevaluated value for the specified property key.
 java.lang.Object FacesBean.getRawProperty(PropertyKey key)
          Gets the current unevaluated value for the specified property key.
 javax.faces.el.ValueBinding FacesBeanImpl.getValueBinding(PropertyKey key)
           
 javax.faces.el.ValueBinding FacesBean.getValueBinding(PropertyKey key)
          Deprecated.  
 javax.el.ValueExpression FacesBeanImpl.getValueExpression(PropertyKey key)
           
 javax.el.ValueExpression FacesBean.getValueExpression(PropertyKey key)
          Return the value expression for a key.
 PropertyKey FacesBean.Type.registerAlias(PropertyKey key, java.lang.String alias)
          Add an alias to an existing PropertyKey.
 void FacesBeanImpl.removeEntry(PropertyKey listKey, java.lang.Object value)
           
 void FacesBean.removeEntry(PropertyKey listKey, java.lang.Object value)
          Remove an entry from a list.
 void FacesBeanImpl.setProperty(PropertyKey key, java.lang.Object value)
           
 void FacesBean.setProperty(PropertyKey key, java.lang.Object value)
          Set a property.
protected  void FacesBeanImpl.setPropertyImpl(PropertyKey key, java.lang.Object value)
           
 void FacesBeanImpl.setValueBinding(PropertyKey key, javax.faces.el.ValueBinding binding)
           
 void FacesBean.setValueBinding(PropertyKey key, javax.faces.el.ValueBinding binding)
          Deprecated.  
 void FacesBeanImpl.setValueExpression(PropertyKey key, javax.el.ValueExpression expression)
           
 void FacesBean.setValueExpression(PropertyKey key, javax.el.ValueExpression expression)
          Set the value expression for a key.
 

Uses of PropertyKey in org.apache.myfaces.trinidad.bean.util
 

Methods in org.apache.myfaces.trinidad.bean.util that return PropertyKey
static PropertyKey StateUtils.restoreKey(FacesBean.Type type, java.lang.Object value)
          Restores a persisted PropertyKey.
 

Methods in org.apache.myfaces.trinidad.bean.util that return types with arguments of type PropertyKey
 java.util.Set<java.util.Map.Entry<PropertyKey,java.lang.Object>> FlaggedPropertyMap.entrySet()
           
 java.util.Iterator<PropertyKey> PropertyTracker.iterator()
          Provides Iterator of the propoerty being tracked in a bitmask
 java.util.Set<PropertyKey> FlaggedPropertyMap.keySet()
           
 

Methods in org.apache.myfaces.trinidad.bean.util with parameters of type PropertyKey
 void PropertyTracker.addProperty(PropertyKey key)
          Adds a property to the bitmask
 java.lang.Object PropertyArrayMap.get(PropertyKey pKey)
           
 java.lang.Object PropertyHashMap.put(PropertyKey key, java.lang.Object value)
           
 java.lang.Object PropertyArrayMap.put(PropertyKey key, java.lang.Object value)
           
 java.lang.Object FlaggedPropertyMap.put(PropertyKey key, java.lang.Object value)
           
 void PropertyTracker.removeProperty(PropertyKey key)
          Stops tracking property in a bitmask
static java.lang.Object StateUtils.saveKey(PropertyKey key)
          Persists a property key.
 

Method parameters in org.apache.myfaces.trinidad.bean.util with type arguments of type PropertyKey
 void PropertyHashMap.putAll(java.util.Map<? extends PropertyKey,? extends java.lang.Object> t)
           
 void PropertyArrayMap.putAll(java.util.Map<? extends PropertyKey,? extends java.lang.Object> t)
           
 void FlaggedPropertyMap.putAll(java.util.Map<? extends PropertyKey,? extends java.lang.Object> t)
           
 

Uses of PropertyKey in org.apache.myfaces.trinidad.component
 

Fields in org.apache.myfaces.trinidad.component declared as PropertyKey
static PropertyKey UIXComponentBase.BINDING_KEY
           
static PropertyKey UIXComponentBase.ID_KEY
           
static PropertyKey UIXComponentBase.RENDERED_KEY
           
static PropertyKey UIXComponentBase.RENDERER_TYPE_KEY
           
static PropertyKey UIXComponentBase.TRANSIENT_KEY
           
static PropertyKey UIXCollection.VAR_KEY
           
 

Methods in org.apache.myfaces.trinidad.component that return PropertyKey
protected  PropertyKey UIXComponentBase.getPropertyKey(java.lang.String name)
           
 

Methods in org.apache.myfaces.trinidad.component that return types with arguments of type PropertyKey
 java.util.Set<PropertyKey> FacesBeanWrapper.bindingKeySet()
           
 java.util.Set<PropertyKey> UIXFacesBeanImpl.keySet()
           
 java.util.Set<PropertyKey> FacesBeanWrapper.keySet()
           
 

Methods in org.apache.myfaces.trinidad.component with parameters of type PropertyKey
 void FacesBeanWrapper.addEntry(PropertyKey listKey, java.lang.Object value)
           
 boolean FacesBeanWrapper.containsEntry(PropertyKey listKey, java.lang.Class<?> clazz)
           
 java.util.Iterator<? extends java.lang.Object> FacesBeanWrapper.entries(PropertyKey listKey)
           
protected  boolean UIXComponentBase.getBooleanProperty(PropertyKey key, boolean defaultValue)
           
 java.lang.Object[] FacesBeanWrapper.getEntries(PropertyKey listKey, java.lang.Class<?> clazz)
           
protected  int UIXComponentBase.getIntProperty(PropertyKey key, int defaultValue)
           
 java.lang.Object FacesBeanWrapper.getLocalProperty(PropertyKey key)
           
protected  java.lang.Object UIXFacesBeanImpl.getLocalPropertyImpl(PropertyKey key)
           
protected  java.lang.Object UIXComponentBase.getProperty(PropertyKey key)
           
 java.lang.Object FacesBeanWrapper.getProperty(PropertyKey key)
           
 java.lang.Object FacesBeanWrapper.getRawProperty(PropertyKey key)
           
 javax.faces.el.ValueBinding FacesBeanWrapper.getValueBinding(PropertyKey key)
           
 javax.el.ValueExpression FacesBeanWrapper.getValueExpression(PropertyKey key)
           
 void FacesBeanWrapper.removeEntry(PropertyKey listKey, java.lang.Object value)
           
protected  void UIXComponentBase.setBooleanProperty(PropertyKey key, boolean value)
           
protected  void UIXComponentBase.setIntProperty(PropertyKey key, int value)
           
 void UIXEditableFacesBeanImpl.setProperty(PropertyKey key, java.lang.Object value)
           
protected  void UIXComponentBase.setProperty(PropertyKey key, java.lang.Object value)
           
 void FacesBeanWrapper.setProperty(PropertyKey key, java.lang.Object value)
           
 void UIXFacesBeanImpl.setPropertyImpl(PropertyKey key, java.lang.Object value)
           
 void FacesBeanWrapper.setValueBinding(PropertyKey key, javax.faces.el.ValueBinding binding)
           
 void FacesBeanWrapper.setValueExpression(PropertyKey key, javax.el.ValueExpression expression)
           
 

Uses of PropertyKey in org.apache.myfaces.trinidad.webapp
 

Methods in org.apache.myfaces.trinidad.webapp with parameters of type PropertyKey
protected  void UIXComponentTag.setBooleanProperty(FacesBean bean, PropertyKey key, java.lang.String value)
          Set a property of type java.lang.Boolean.
protected  void UIXComponentTag.setCharacterProperty(FacesBean bean, PropertyKey key, java.lang.String value)
          Set a property of type java.lang.Character.
protected  void UIXComponentTag.setDateProperty(FacesBean bean, PropertyKey key, java.lang.String value)
          Set a property of type java.util.Date.
protected  void UIXComponentELTag.setDateProperty(FacesBean bean, PropertyKey key, javax.el.ValueExpression expression)
          Set a property of type java.util.Date.
protected  void UIXComponentTag.setDoubleProperty(FacesBean bean, PropertyKey key, java.lang.String value)
          Set a property of type java.lang.Double.
protected  void UIXComponentTag.setFloatProperty(FacesBean bean, PropertyKey key, java.lang.String value)
          Set a property of type java.lang.Float.
protected  void UIXComponentTag.setIntArrayProperty(FacesBean bean, PropertyKey key, java.lang.String value)
          Set a property of type int[].
protected  void UIXComponentELTag.setIntArrayProperty(FacesBean bean, PropertyKey key, javax.el.ValueExpression expression)
          Set a property of type int[].
protected  void UIXComponentTag.setIntegerProperty(FacesBean bean, PropertyKey key, java.lang.String value)
          Set a property of type java.lang.Integer.
protected  void UIXComponentTag.setLongProperty(FacesBean bean, PropertyKey key, java.lang.String value)
          Set a property of type java.lang.Long.
protected  void UIXComponentELTag.setMaxDateProperty(FacesBean bean, PropertyKey key, javax.el.ValueExpression expression)
          Set a property of type java.util.Date.
protected  void UIXComponentTag.setNumberProperty(FacesBean bean, PropertyKey key, java.lang.String value)
          Set a property of type java.lang.Number.
protected  void UIXComponentELTag.setNumberProperty(FacesBean bean, PropertyKey key, javax.el.ValueExpression expression)
          Set a property of type java.lang.Number.
protected  void UIXComponentTag.setProperty(FacesBean bean, PropertyKey key, java.lang.String value)
           
protected  void UIXComponentELTag.setProperty(FacesBean bean, PropertyKey key, javax.el.ValueExpression expression)
           
protected  void UIXComponentTag.setStringArrayProperty(FacesBean bean, PropertyKey key, java.lang.String value)
          Set a property of type java.lang.String[].
protected  void UIXComponentELTag.setStringArrayProperty(FacesBean bean, PropertyKey key, javax.el.ValueExpression expression)
          Set a property of type java.lang.String[].
protected  void UIXComponentELTag.setStringListProperty(FacesBean bean, PropertyKey key, javax.el.ValueExpression expression)
          Set a property of type java.util.List.
protected  void UIXComponentELTag.setStringSetProperty(FacesBean bean, PropertyKey key, javax.el.ValueExpression expression)
          Set a property of type java.util.Set.
 



Copyright © 2001-2011 The Apache Software Foundation. All Rights Reserved.