Siebel Object Interfaces Reference > Java Data Bean Quick Reference >

Property Set Methods for Java Data Bean


Table 43 lists a summary of the SiebelPropertySet methods' syntax.

Table 43. SiebelPropertySet Methods Syntax Summary
Method
Description
Syntax

AddChild Method

Adds subsidiary property sets to a property set.

int addChild(SiebelPropertySet propertySet)

Copy Method

Returns a copy of a property set.

SiebelPropertySet copy(SiebelPropertySet propertySet)

GetChild Method

Returns a specified child property set of a property set.

SiebelPropertySet getChild(int index)

GetChildCount Method

Returns the number of child property sets attached to a parent property set.

int getChildCount()

GetFirstProperty Method

Returns the name of the first property in a property set.

String getFirstProperty()

GetNextProperty Method

Returns the name of the next property in a property set.

String getNextProperty()

GetProperty Method

Returns the value of a property when given the property name.

String getProperty(String propertyName)

GetPropertyCount Method

Returns the number of properties attached to a property set.

int GetPropertyCount()

GetType Method

Returns the value stored in the Type attribute of a PropertySet.

String getType()

GetValue Method

Returns the value stored in the Value attribute of a PropertySet.

String getValue()

InsertChildAt Method

Inserts a child property set into a parent property set at a specific location.

boolean insertChildAt(SiebelPropertySet propertySet, int index)

PropertyExists Method

Returns a Boolean value indicating whether the property specified in the argument exists.

boolean propertyExists(String propertyName)

RemoveChild Method

Removes a child property set as a specified index from a parent property set.

boolean removeChild(int index)

RemoveProperty Method

Removes the property specified in its argument from a property set.

boolean removeProperty(String propertyName)

Reset Method

Removes every property and child property set from a property set.

boolean reset()

SetProperty Method

Assigns a value to the property of a property set specified in its argument.

boolean setProperty(String propertyName, String propertyValue)

SetType Method

Assigns a data value to a type member of a property set.

boolean setType(String type)

SetValue Method

Assigns a data value to a value member of a property set.

boolean setValue(String value)

Siebel Object Interfaces Reference