com.businessobjects.sdk.plugin.desktop.webi
Interface IWebiDocProperties


public interface IWebiDocProperties

Collections of IWebiDocProperty


Method Summary
 IWebiDocProperty add(java.lang.String name)
          Adds a new property, if there is no other property which same name, otherwise returns the existing property.
 void clear()
          Deletes all elements handled by this collection.
 int count()
          Returns number of IWebiDocProperty handled by this collection.
 void delete(int index)
          Deletes element at given index.
 IWebiDocProperty item(int index)
          Retrieves property by its index.
 IWebiDocProperty itemByName(java.lang.String name)
          Retrieves property by its name.
 

Method Detail

count

int count()
Returns number of IWebiDocProperty handled by this collection.

Returns:

item

IWebiDocProperty item(int index)
Retrieves property by its index.

Parameters:
index - of element to reach.
Returns:
IWebiDocProperty or null, if there is no property for this index.

itemByName

IWebiDocProperty itemByName(java.lang.String name)
Retrieves property by its name.

Parameters:
name - of element to reach
Returns:
IWebiDocProperty or null, if there is no property for this index.

add

IWebiDocProperty add(java.lang.String name)
Adds a new property, if there is no other property which same name, otherwise returns the existing property.

Parameters:
name - property name to add
Returns:
IWEbiDocProperty

delete

void delete(int index)
Deletes element at given index.

Parameters:
index - of element to delete

clear

void clear()
Deletes all elements handled by this collection.