Specifies the attributes of the component class.
public void getAttributes( IAttributes attributes )
attributes
An object implementing the IAtttibutes interface that is used to enumerate the attributes.
For each attribute, getAttributes calls the add method of the attributes parameter. The following example shows a portion of the ClassInfo of the Control class:
public static class ClassInfo extends Component.ClassInfo { public void getAttributes(IAttributes attribs) { super.getAttributes(attribs); // Specify that the control should be displayed in the toolbox. attribs.add(ShowInToolboxAttribute.YES); } }