JavaTM 2 Platform
Standard Ed. 5.0

javax.swing.event
Ŭ·¡½º InternalFrameAdapter

java.lang.Object 
  »óÀ§¸¦ È®Àå javax.swing.event.InternalFrameAdapter
¸ðµç ±¸ÇöµÈ ÀÎÅÍÆäÀ̽º:
EventListener, InternalFrameListener

public abstract class InternalFrameAdapter
extends Object
implements InternalFrameListener

³»ºÎ ÇÁ·¹ÀÓ À̺¥Æ®¸¦ ¹Þ±â À§ÇÑ Ãß»ó ¾î´ðÅÍ Å¬·¡½ºÀÔ´Ï´Ù. ÀÌ Å¬·¡½ºÀÇ ¸Þ¼­µå´Â ºñ¾îÀÖ½À´Ï´Ù. ÀÌ Å¬·¡½º´Â ¸®½º³Ê °´Ã¼ÀÇ ÀÛ¼º¿¡ ÀÌ¿ëÇϱâ À§Çؼ­ Á¦°øµÇ¾î ±â´ÉÀûÀ¸·Î´Â AWT WindowAdapter Ŭ·¡½º¿Í °°½À´Ï´Ù.

¡¸The Java Tutorial¡¹ÀÇ ¡¸How to Write an Internal Frame Listener¡¹ ¹×¡¸The Java Class Libraries (update) ¡¹¸¦ ÂüÁ¶ÇϽʽÿÀ.

°ü·Ã Ç׸ñ:
InternalFrameEvent, InternalFrameListener, WindowListener

»ý¼ºÀÚ °³¿ä
InternalFrameAdapter ()
           
 
¸Þ¼­µå °³¿ä
 void internalFrameActivated (InternalFrameEvent  e)
          ³»ºÎ ÇÁ·¹ÀÓÀÌ ½ÃÀ۵ǾúÀ» ¶§¿¡ È£ÃâÇÕ´Ï´Ù.
 void internalFrameClosed (InternalFrameEvent  e)
          ³»ºÎ ÇÁ·¹ÀÓÀÌ Å¬·Î¿ìÁî µÇ¾úÀ» ¶§¿¡ È£ÃâÇÕ´Ï´Ù.
 void internalFrameClosing (InternalFrameEvent  e)
          ³»ºÎ ÇÁ·¹ÀÓÀÌ Å¬·Î¿ìÁî ó¸®Áß ¶§¿¡ È£ÃâÇÕ´Ï´Ù.
 void internalFrameDeactivated (InternalFrameEvent  e)
          ³»ºÎ ÇÁ·¹ÀÓÀÌ Á¾·áµÇ¾úÀ» ¶§¿¡ È£ÃâÇÕ´Ï´Ù.
 void internalFrameDeiconified (InternalFrameEvent  e)
          ³»ºÎ ÇÁ·¹ÀÓÀÌÀڽľÆÀÌÄÜÈ­ ÇØÁ¦µÇ¾úÀ» ¶§¿¡ È£ÃâÇÕ´Ï´Ù.
 void internalFrameIconified (InternalFrameEvent  e)
          ³»ºÎ ÇÁ·¹ÀÓÀÌÀڽľÆÀÌÄÜÈ­ µÇ¾úÀ» ¶§¿¡ È£ÃâÇÕ´Ï´Ù.
 void internalFrameOpened (InternalFrameEvent  e)
          ³»ºÎ ÇÁ·¹ÀÓÀÌ ¿ÀǵǾúÀ» ¶§¿¡ È£ÃâÇÕ´Ï´Ù.
 
Ŭ·¡½º java.lang. Object ·ÎºÎÅÍ »ó¼ÓµÈ ¸Þ¼­µå
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

»ý¼ºÀÚ »ó¼¼

InternalFrameAdapter

public InternalFrameAdapter()
¸Þ¼­µåÀÇ »ó¼¼

internalFrameOpened

public void internalFrameOpened(InternalFrameEvent  e)
³»ºÎ ÇÁ·¹ÀÓÀÌ ¿ÀǵǾúÀ» ¶§¿¡ È£ÃâÇÕ´Ï´Ù.

Á¤ÀÇ:
ÀÎÅÍÆäÀ̽º InternalFrameListener ³»ÀÇ internalFrameOpened
°ü·Ã Ç׸ñ:
JInternalFrame.show()

internalFrameClosing

public void internalFrameClosing(InternalFrameEvent  e)
³»ºÎ ÇÁ·¹ÀÓÀÌ Å¬·Î¿ìÁî ó¸®Áß ¶§¿¡ È£ÃâÇÕ´Ï´Ù. Ŭ·Î¿ìÁî ¿ÀÆÛ·¹À̼ÇÀº ÀÌ ½ÃÁ¡¿¡¼­ ¿À¹ö¶óÀ̵å(override) ÇÒ ¼ö ÀÖ½À´Ï´Ù.

Á¤ÀÇ:
ÀÎÅÍÆäÀ̽º InternalFrameListener ³»ÀÇ internalFrameClosing
°ü·Ã Ç׸ñ:
JInternalFrame.setDefaultCloseOperation(int)

internalFrameClosed

public void internalFrameClosed(InternalFrameEvent  e)
³»ºÎ ÇÁ·¹ÀÓÀÌ Å¬·Î¿ìÁî µÇ¾úÀ» ¶§¿¡ È£ÃâÇÕ´Ï´Ù.

Á¤ÀÇ:
ÀÎÅÍÆäÀ̽º InternalFrameListener ³»ÀÇ internalFrameClosed
°ü·Ã Ç׸ñ:
JInternalFrame.setClosed(boolean)

internalFrameIconified

public void internalFrameIconified(InternalFrameEvent  e)
³»ºÎ ÇÁ·¹ÀÓÀÌÀڽľÆÀÌÄÜÈ­ µÇ¾úÀ» ¶§¿¡ È£ÃâÇÕ´Ï´Ù.

Á¤ÀÇ:
ÀÎÅÍÆäÀ̽º InternalFrameListener ³»ÀÇ internalFrameIconified
°ü·Ã Ç׸ñ:
JInternalFrame.setIcon(boolean)

internalFrameDeiconified

public void internalFrameDeiconified(InternalFrameEvent  e)
³»ºÎ ÇÁ·¹ÀÓÀÌÀڽľÆÀÌÄÜÈ­ ÇØÁ¦µÇ¾úÀ» ¶§¿¡ È£ÃâÇÕ´Ï´Ù.

Á¤ÀÇ:
ÀÎÅÍÆäÀ̽º InternalFrameListener ³»ÀÇ internalFrameDeiconified
°ü·Ã Ç׸ñ:
JInternalFrame.setIcon(boolean)

internalFrameActivated

public void internalFrameActivated(InternalFrameEvent  e)
³»ºÎ ÇÁ·¹ÀÓÀÌ ½ÃÀ۵ǾúÀ» ¶§¿¡ È£ÃâÇÕ´Ï´Ù.

Á¤ÀÇ:
ÀÎÅÍÆäÀ̽º InternalFrameListener ³»ÀÇ internalFrameActivated
°ü·Ã Ç׸ñ:
JInternalFrame.setSelected(boolean)

internalFrameDeactivated

public void internalFrameDeactivated(InternalFrameEvent  e)
³»ºÎ ÇÁ·¹ÀÓÀÌ Á¾·áµÇ¾úÀ» ¶§¿¡ È£ÃâÇÕ´Ï´Ù.

Á¤ÀÇ:
ÀÎÅÍÆäÀ̽º InternalFrameListener ³»ÀÇ internalFrameDeactivated
°ü·Ã Ç׸ñ:
JInternalFrame.setSelected(boolean)

JavaTM 2 Platform
Standard Ed. 5.0

Copyright 2004 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms . Documentation Redistribution Policy µµ ÂüÁ¶ÇϽʽÿÀ.