All Packages Class Hierarchy This Package Previous Next Index
Class quicktime.app.display.GroupMember
java.lang.Object
|
+----quicktime.app.display.GroupMember
- public class GroupMember
- extends Object
- implements Layerable
This class contains information that is attached to a QTDrawable object that
is attached to a GroupDrawable object.
-
GroupMember(GroupDrawable, QTDrawable, int)
- Construct a GroupMember object.
-
equals(Object)
- Returns true if the GroupMember is the same drawer and
has the same layout characteristics.
-
getDrawer()
- The current drawing object that the settings relate to
-
getLayer()
- Layer is a read only property - it is the front-to-back positioning of the
drawer in its Group, 0 is frontmost.
-
setLayer(int)
- Set the member's layer within its group.
-
toString()
- Returns a string representation of this object
GroupMember
protected GroupMember(GroupDrawable group,
QTDrawable d,
int l) throws QTException
- Construct a GroupMember object.
- Parameters:
- group - the GroupDrawable of which d is a member
- d - the QTDrawable member
- is - the intial size
- l - the member's current layer
equals
public boolean equals(Object obj)
- Returns true if the GroupMember is the same drawer and
has the same layout characteristics.
- Parameters:
- obj - the other object to test for equality
- Returns:
- true if equal else false
- Overrides:
- equals in class Object
getLayer
public int getLayer()
- Layer is a read only property - it is the front-to-back positioning of the
drawer in its Group, 0 is frontmost. To reset the layer you call the
setLayer method of the group.
- Returns:
- the current layer of the drawer within the group
setLayer
public void setLayer(int l) throws QTException
- Set the member's layer within its group.
- Parameters:
- l - the new layer
getDrawer
public final QTDrawable getDrawer()
- The current drawing object that the settings relate to
toString
public String toString()
- Returns a string representation of this object
- Overrides:
- toString in class Object
All Packages Class Hierarchy This Package Previous Next Index