jet.webreport
Interface PropertiesInfo


public interface PropertiesInfo

The PropertiesInfo interface provides users various jet.webreport.beans.Property of report, page, components and so on.
This interface is for Page Reports (.cls), not Web Reports (.wls) and Library Components (.lc).


Method Summary
 java.util.Iterator getAllProperties()
          Returns all Property in Iterator
 java.lang.String[] getAllPropertyNames()
          Returns all property names in a string array.
 Property getProperty(java.lang.String name)
          Returns jet.webreport.beans.Property instance with the specified property name.
 

Method Detail

getAllProperties

java.util.Iterator getAllProperties()
Returns all Property in Iterator

Returns:
Iterator
See Also:
Property

getAllPropertyNames

java.lang.String[] getAllPropertyNames()
Returns all property names in a string array.

Returns:
a string array with all names.
See Also:
Property

getProperty

Property getProperty(java.lang.String name)
Returns jet.webreport.beans.Property instance with the specified property name.

Parameters:
name - the property name.
Returns:
the Property
See Also:
Property