IProperties Interface

IProperties Interface

This Package | All Packages

public interface IProperties

The IProperties interface is a callback interface that is used in implementations of the getProperties() method of the IClassInfo interface. An implementation of IClassInfo.getProperties() is provided an instance of the IProperties interface and is responsible for calling the add() method to enumerate the properties of the associated component class.

Methods
Name Description
add(PropertyInfo p) Defines a property.
remove(PropertyInfo p) Removes a property.

Methods

IProperties.add

Syntax
public void add( PropertyInfo p );
Description

Defines a property.

IProperties.remove

Syntax
public void remove( PropertyInfo p );
Description

Removes a property.