com.togethersoft.openapi.ide.window
Interface IdeDialogButtonGroup


public interface IdeDialogButtonGroup

Interface IdeDialogButtonGroup provides a container for all types of buttons.

The useful feature of this container is that all its'the buttons have same size.

This interface provides methods for adding, removing, and returning an enumeration of the buttons within this button group.

Author:
TogetherSoft

Method Summary
 voidadd(AbstractButton button)
           Adds specified button to this group.
 AbstractButtonEnumerationelements()
           Returns an enumeration of all the buttons in this group.
 voidremove(AbstractButton button)
           Removes specified button from this group.

Method Detail

add

public void add(AbstractButton button)
Adds specified button to this group.
Parameters:
button - AbstractButton instance to be added to this group

elements

public AbstractButtonEnumeration elements()
Returns an enumeration of all the buttons in this group.
Returns: an AbstractButtonEnumeration
See Also:
AbstractButtonEnumeration

remove

public void remove(AbstractButton button)
Removes specified button from this group.
Parameters:
button - AbstractButton instance to be removed from this group