Uses of Interface
org.palo.api.Property2

Packages that use Property2
org.palo.api   
org.palo.api.impl   
 

Uses of Property2 in org.palo.api
 

Methods in org.palo.api that return Property2
 Property2[] Property2.getChildren()
          Returns all child properties of this property.
 Property2[] Property2.getChildren(java.lang.String childId)
          Returns all child properties with the specified id.
 Property2 Property2.getParent()
          Returns the parent of this property or null if no parent exists.
 Property2 Cube.getProperty(java.lang.String id)
          Returns the property identified by the given id.
 Property2 Connection.getProperty(java.lang.String id)
          Returns the property identified by the given id.
abstract  Property2 Property2Factory.newProperty(Connection con, java.lang.String id, java.lang.String value)
          Creates a new property2 object that has no parent and is of type string.
abstract  Property2 Property2Factory.newProperty(Connection con, java.lang.String id, java.lang.String value, int type)
          Creates a new property2 object that has no parent and is of the specified type (one of the constants defined in Property2).
abstract  Property2 Property2Factory.newProperty(Connection con, java.lang.String id, java.lang.String value, Property2 parent)
          Creates a new property2 object that has the given parent and is of type string.
abstract  Property2 Property2Factory.newProperty(Connection con, java.lang.String id, java.lang.String value, Property2 parent, int type)
          Creates a new property2 object that has the given parent and is of the specified type (one of the constants defined in Property2).
abstract  Property2 Property2Factory.newReadOnlyProperty(Connection con, java.lang.String id, java.lang.String value)
          Creates a new read-only property2 object that has no parent and is of type string.
abstract  Property2 Property2Factory.newReadOnlyProperty(Connection con, java.lang.String id, java.lang.String value, int type)
          Creates a new read-only property2 object that has no parent and is of the specified type (one of the constants defined in Property2).
abstract  Property2 Property2Factory.newReadOnlyProperty(Connection con, java.lang.String id, java.lang.String value, Property2 parent)
          Creates a new read-only property2 object that has the given parent and is of type string.
abstract  Property2 Property2Factory.newReadOnlyProperty(Connection con, java.lang.String id, java.lang.String value, Property2 parent, int type)
          Creates a new read-only property2 object that has the given parent and is of the specified type (one of the constants defined in Property2).
 

Methods in org.palo.api with parameters of type Property2
 void Property2.addChild(Property2 child)
          Adds a new child to this property.
 void Cube.addProperty(Property2 property)
          Adds the given property to the list of properties for this cube.
 void Connection.addProperty(Property2 property)
          Adds the given property to the list of properties for this connection.
abstract  Property2 Property2Factory.newProperty(Connection con, java.lang.String id, java.lang.String value, Property2 parent)
          Creates a new property2 object that has the given parent and is of type string.
abstract  Property2 Property2Factory.newProperty(Connection con, java.lang.String id, java.lang.String value, Property2 parent, int type)
          Creates a new property2 object that has the given parent and is of the specified type (one of the constants defined in Property2).
abstract  Property2 Property2Factory.newReadOnlyProperty(Connection con, java.lang.String id, java.lang.String value, Property2 parent)
          Creates a new read-only property2 object that has the given parent and is of type string.
abstract  Property2 Property2Factory.newReadOnlyProperty(Connection con, java.lang.String id, java.lang.String value, Property2 parent, int type)
          Creates a new read-only property2 object that has the given parent and is of the specified type (one of the constants defined in Property2).
 void Property2.removeChild(Property2 child)
          Removes a given child from this property.
 

Uses of Property2 in org.palo.api.impl
 

Classes in org.palo.api.impl that implement Property2
 class Property2Impl
           
 

Methods in org.palo.api.impl that return Property2
 Property2[] Property2Impl.getChildren()
           
 Property2[] Property2Impl.getChildren(java.lang.String childId)
           
 Property2 Property2Impl.getParent()
           
 Property2 ConnectionImpl.getProperty(java.lang.String id)
           
 Property2 Property2FactoryImpl.newProperty(Connection con, java.lang.String id, java.lang.String value)
           
 Property2 Property2FactoryImpl.newProperty(Connection con, java.lang.String id, java.lang.String value, int type)
           
 Property2 Property2FactoryImpl.newProperty(Connection con, java.lang.String id, java.lang.String value, Property2 parent)
           
 Property2 Property2FactoryImpl.newProperty(Connection con, java.lang.String id, java.lang.String value, Property2 parent, int type)
           
 Property2 Property2FactoryImpl.newReadOnlyProperty(Connection con, java.lang.String id, java.lang.String value)
           
 Property2 Property2FactoryImpl.newReadOnlyProperty(Connection con, java.lang.String id, java.lang.String value, int type)
           
 Property2 Property2FactoryImpl.newReadOnlyProperty(Connection con, java.lang.String id, java.lang.String value, Property2 parent)
           
 Property2 Property2FactoryImpl.newReadOnlyProperty(Connection con, java.lang.String id, java.lang.String value, Property2 parent, int type)
           
 

Methods in org.palo.api.impl with parameters of type Property2
 void Property2Impl.addChild(Property2 child)
           
 void ConnectionImpl.addProperty(Property2 property)
           
 Property2 Property2FactoryImpl.newProperty(Connection con, java.lang.String id, java.lang.String value, Property2 parent)
           
 Property2 Property2FactoryImpl.newProperty(Connection con, java.lang.String id, java.lang.String value, Property2 parent, int type)
           
 Property2 Property2FactoryImpl.newReadOnlyProperty(Connection con, java.lang.String id, java.lang.String value, Property2 parent)
           
 Property2 Property2FactoryImpl.newReadOnlyProperty(Connection con, java.lang.String id, java.lang.String value, Property2 parent, int type)
           
 void Property2Impl.removeChild(Property2 child)