com.tensegrity.generic.attribute
Interface AttributableOnSetCollectionFeedback


public interface AttributableOnSetCollectionFeedback

* The AttributableOnSetCollectionFeedback can be used with an AttributableOnSetCollection in order to get notified when the AttributableOnSetCollection gets modified. *

Version:
$Id: AttributableOnSetCollectionFeedback.java,v 1.2 2006/01/26 10:12:38 MichaelKegel Exp $
See Also:
* @author MKegel

Method Summary
 void addAttributableOnSet(AttributableOnSet aos)
          This method gets called before an AttributableOnSet instance will get added to the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.
 void addAttributableOnSetListener(AttributableOnSetListener aosListener)
          This method gets called when an AttributableOnSetListener instance is about to get added to the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.
 void addedAttributableOnSet(AttributableOnSet aos)
          This method gets called after an AttributableOnSet instance has been added to the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.
 void addedAttributableOnSetListener(AttributableOnSetListener aosListener)
          This method gets called when an AttributableOnSetListener instance has been added to the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.
 void afterSetAttribute(Attribute attribute)
          This method get called after the attribute of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to has been set.
 void afterSetAttributes(AttributeSet attributes)
          This method gets called after the attribute of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to has been set.
 void afterSetAttributesTree(AttributableOnSet attributable, AttributeSet attributes)
          This method gets called after the attribute tree of a certain AttributableOnSet instance have been set.
 void afterSetAttributesTree(AttributeSet attributes)
          This method gets called after the attribute tree of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to has been set.
 void afterSetAttributeValue(java.lang.String name, java.lang.Object value)
          This method gets called after the value of a certain attribute of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to has been set.
 void beforeSetAttribute(Attribute attribute)
          This method gets called before the attribute of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to will get set.
 void beforeSetAttributes(AttributeSet attributes)
          This method gets called before the attribute of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated will get set.
 void beforeSetAttributesTree(AttributableOnSet attributable, AttributeSet attributes)
          This method gets called before the attribute tree of a certain AttributableOnSet instance will get set.
 void beforeSetAttributesTree(AttributeSet attributes)
          This method gets called before the attribute tree of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated will get set.
 void beforeSetAttributeValue(java.lang.String name, java.lang.Object value)
          This method gets called before the value of a certain attribute of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to will get set.
 void disableAttributableEvents()
          This method gets called before the event raising of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to will be disabled.
 void disabledAttributableEvents()
          This method gets called after the event raising of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to has been disabled.
 void enableAttributableEvents()
          This method gets called before the event raising of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to will be enabled.
 void enabledAttributableEvents()
          This method gets called after the event raising of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to has been enabled.
 void removeAttributableOnSet(AttributableOnSet aos)
          This method gets called before an AttributableOnSet instance will get removed from the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.
 void removeAttributableOnSetListener(AttributableOnSetListener aosListener)
          This method gets called when an AttributableOnSetListener instance is about to get removed from the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.
 void removedAttributableOnSet(AttributableOnSet aos)
          This method gets called after an AttributableOnSet instance has been removed from the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.
 void removedAttributableOnSetListener(AttributableOnSetListener aosListener)
          This method gets called when an AttributableOnSetListener instance has been removed from the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.
 

Method Detail

addAttributableOnSet

public void addAttributableOnSet(AttributableOnSet aos)
This method gets called before an AttributableOnSet instance will get added to the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.

Parameters:
aos - the AttributableOnSet instance that will get added
See Also:
AttributableOnSetCollection.addAttributableOnSet(AttributableOnSet)

addedAttributableOnSet

public void addedAttributableOnSet(AttributableOnSet aos)
This method gets called after an AttributableOnSet instance has been added to the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.

Parameters:
aos - the AttributableOnSet instance that has been added
See Also:
AttributableOnSetCollection.addAttributableOnSet(AttributableOnSet)

removeAttributableOnSet

public void removeAttributableOnSet(AttributableOnSet aos)
This method gets called before an AttributableOnSet instance will get removed from the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.

Parameters:
aos - the AttributableOnSet instance that will get remove
See Also:
AttributableOnSetCollection.removeAttributableOnSet(AttributableOnSet)

removedAttributableOnSet

public void removedAttributableOnSet(AttributableOnSet aos)
This method gets called after an AttributableOnSet instance has been removed from the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.

Parameters:
aos - the AttributableOnSet instance that has been removed
See Also:
AttributableOnSetCollection.removeAttributableOnSet(AttributableOnSet)

beforeSetAttribute

public void beforeSetAttribute(Attribute attribute)
This method gets called before the attribute of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to will get set.

Parameters:
attribute - the attribute that will get set
See Also:
Attributable.setAttribute(Attribute)

afterSetAttribute

public void afterSetAttribute(Attribute attribute)
This method get called after the attribute of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to has been set.

Parameters:
attribute - the attribute that has been set
See Also:
Attributable.setAttribute(Attribute)

beforeSetAttributeValue

public void beforeSetAttributeValue(java.lang.String name,
                                    java.lang.Object value)
This method gets called before the value of a certain attribute of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to will get set.

Parameters:
name - the name of the Attribute whos value will get set
value - the value that will get set
See Also:
Attributable.setAttributeValue(String, Object)

afterSetAttributeValue

public void afterSetAttributeValue(java.lang.String name,
                                   java.lang.Object value)
This method gets called after the value of a certain attribute of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to has been set.

Parameters:
name - the name of the Attribute whos value has been set
value - the value that has been set
See Also:
Attributable.setAttributeValue(String, Object)

beforeSetAttributes

public void beforeSetAttributes(AttributeSet attributes)
This method gets called before the attribute of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated will get set.

Parameters:
attributes - the Attribute instances that will get set
See Also:
AttributableOnSet.setAttributes(AttributeSet)

afterSetAttributes

public void afterSetAttributes(AttributeSet attributes)
This method gets called after the attribute of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to has been set.

Parameters:
attributes - the Attribute instances that have been set
See Also:
AttributableOnSet.setAttributes(AttributeSet)

beforeSetAttributesTree

public void beforeSetAttributesTree(AttributeSet attributes)
This method gets called before the attribute tree of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated will get set.

Parameters:
attributes - the Attribute instances that will get set
See Also:
AttributableOnSet.setAttributesTree(AttributeSet)

afterSetAttributesTree

public void afterSetAttributesTree(AttributeSet attributes)
This method gets called after the attribute tree of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to has been set.

Parameters:
attributes - the Attribute instances that have been set
See Also:
AttributableOnSet.setAttributesTree(AttributeSet)

beforeSetAttributesTree

public void beforeSetAttributesTree(AttributableOnSet attributable,
                                    AttributeSet attributes)
This method gets called before the attribute tree of a certain AttributableOnSet instance will get set.

Parameters:
attributable - the AttributableOnSet instance whos attribute tree will be set
attributes - the Attribute instances that will get set
See Also:
AttributableOnSet.setAttributesTree(AttributeSet)

afterSetAttributesTree

public void afterSetAttributesTree(AttributableOnSet attributable,
                                   AttributeSet attributes)
This method gets called after the attribute tree of a certain AttributableOnSet instance have been set.

Parameters:
attributable - the AttributableOnSet instance whos attribute tree has been set
attributes - the Attribute instances that have been set
See Also:
AttributableOnSet.setAttributesTree(AttributeSet)

enableAttributableEvents

public void enableAttributableEvents()
This method gets called before the event raising of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to will be enabled.

See Also:
AttributableOnSet.enableAttributableEvents()

enabledAttributableEvents

public void enabledAttributableEvents()
This method gets called after the event raising of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to has been enabled.

See Also:
AttributableOnSet.enableAttributableEvents()

disableAttributableEvents

public void disableAttributableEvents()
This method gets called before the event raising of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to will be disabled.

See Also:
AttributableOnSet.disableAttributableEvents()

disabledAttributableEvents

public void disabledAttributableEvents()
This method gets called after the event raising of the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to has been disabled.

See Also:
AttributableOnSet.disableAttributableEvents()

addAttributableOnSetListener

public void addAttributableOnSetListener(AttributableOnSetListener aosListener)
This method gets called when an AttributableOnSetListener instance is about to get added to the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.

Parameters:
aosListener - the listener that will be added
See Also:
AttributableOnSetCollection.addAttributableOnSetListener(AttributableOnSetListener)

addedAttributableOnSetListener

public void addedAttributableOnSetListener(AttributableOnSetListener aosListener)
This method gets called when an AttributableOnSetListener instance has been added to the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.

Parameters:
aosListener - the listener that has been added
See Also:
AttributableOnSetCollection.addAttributableOnSetListener(AttributableOnSetListener)

removeAttributableOnSetListener

public void removeAttributableOnSetListener(AttributableOnSetListener aosListener)
This method gets called when an AttributableOnSetListener instance is about to get removed from the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.

Parameters:
aosListener - the listener that will be removed
See Also:
AttributableOnSetCollection.removeAttributableOnSetListener(AttributableOnSetListener)

removedAttributableOnSetListener

public void removedAttributableOnSetListener(AttributableOnSetListener aosListener)
This method gets called when an AttributableOnSetListener instance has been removed from the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.

Parameters:
aosListener - the listener that has been removed
See Also:
AttributableOnSetCollection.removeAttributableOnSetListener(AttributableOnSetListener)


Copyright © 2005 Tensegrity Software GmbH. All Rights Reserved. Date of creation: 09.06.2006.