KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > awt > event > HierarchyEvent

java.awt.event
Class HierarchyEvent

java.lang.Object
  extended by java.util.EventObject
      extended by java.awt.AWTEvent
          extended by java.awt.event.HierarchyEvent
All Implemented Interfaces:
Serializable
See Also:
Top Examples, Source Code, HierarchyListener, HierarchyBoundsAdapter, HierarchyBoundsListener

public static final int ANCESTOR_MOVED
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int ANCESTOR_RESIZED
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int DISPLAYABILITY_CHANGED
See Also:
Component.removeNotify(), Component.addNotify(), Component.isDisplayable()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Component getChanged()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Container getChangedParent()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public long getChangeFlags()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Component getComponent()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public HierarchyEvent(Component source,
                      int id,
                      Component changed,
                      Container changedParent)
See Also:
IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public HierarchyEvent(Component source,
                      int id,
                      Component changed,
                      Container changedParent,
                      long changeFlags)
See Also:
IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int HIERARCHY_CHANGED
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int HIERARCHY_FIRST
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int HIERARCHY_LAST
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String paramString()
See Also:
AWTEvent
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int PARENT_CHANGED
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int SHOWING_CHANGED
See Also:
Component.hide(), Component.show(), Component.removeNotify(), Component.addNotify(), Component.isShowing()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags