Uses of Class
com.ibm.di.entry.Property

Packages that use Property
com.ibm.di.entry Provides classes that implement the Tivoli Directory Integrator Entry model. 
 

Uses of Property in com.ibm.di.entry
 

Methods in com.ibm.di.entry that return Property
 Property Entry.createAttribute(String name)
          This method creates a new Property object that represents an element's attribute in terms of DOM concepts.
 Property Entry.createAttributeNS(String namespaceURI, String qualifiedName)
          This method creates new Property object that represents an element's attribute in terms of XML concepts.
 Property Attribute.getAttributeNode(String name)
          
 Property Attribute.getAttributeNodeNS(String namespaceURI, String localName)
          
 Property PropertyMap.getNamedItem(String name)
          Looks up a Property using the specified qualified name.
 Property PropertyMap.getNamedItemNS(String namespaceURI, String localName)
          Looks up a Property using the specified namespace URI and localName.
 Property PropertyMap.item(int index)
           
 Property PropertyMap.removeNamedItem(String name)
          Removes the Property referenced by the given qualified name
 Property PropertyMap.removeNamedItemNS(String namespaceURI, String localName)
          Removes the Property referenced by the given namespace URI and localName
 Property PropertyMap.setNamedItem(Node property)
          Adds a Property using its nodeName attribute.
 Property PropertyMap.setNamedItemNS(Node property)
          Adds a node using its namespaceURI and localName.
 

Methods in com.ibm.di.entry with parameters of type Property
 void PropertyMap.add(int pos, Property prop)
          Adds the prop object at the specified position if its type is Property otherwise nothing is added.
 boolean PropertyMap.add(Property prop)
          Adds the prop object if its type is Property otherwise nothing is added
 

Method parameters in com.ibm.di.entry with type arguments of type Property
 boolean PropertyMap.addAll(Collection<? extends Property> arg0)
          Adds only the Property objects to this PropertyMap
 boolean PropertyMap.addAll(int pos, Collection<? extends Property> colection)
          Adds only the Property objects to this PropertyMap, starting from the specified position.