Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
javax.swing.JInternalFrame

Uses of JInternalFrame in javax.swing
 

Fields in javax.swing declared as JInternalFrame
(package private)  JInternalFrame JInternalFrame.JDesktopIcon.frame
          The JInternalFrame this DesktopIcon represents.
private  JInternalFrame JDesktopPane.selectedFrame
          The selected frame in the JDesktopPane.
 

Methods in javax.swing that return JInternalFrame
 JInternalFrame JInternalFrame.JDesktopIcon.getInternalFrame()
          This method returns the JInternalFrame this JDesktopIcon represents.
 JInternalFrame[] JDesktopPane.getAllFrames()
          This method returns all JInternalFrames that are in the JDesktopPane.
 JInternalFrame JDesktopPane.getSelectedFrame()
          This method returns the currently selected frame in the JDesktopPane.
 JInternalFrame[] JDesktopPane.getAllFramesInLayer(int layer)
          This method returns all the JInternalFrames in the given layer.
private static JInternalFrame[] JDesktopPane.getFramesFromComponents(java.awt.Component[] components)
          This method returns all the JInternalFrames in the given Component array.
 JInternalFrame JOptionPane.createInternalFrame(java.awt.Component parentComponent, java.lang.String title)
          This method creates a new JInternalFrame that is in the JLayeredPane which contains the parentComponent given.
 

Methods in javax.swing with parameters of type JInternalFrame
 java.awt.Component InternalFrameFocusTraversalPolicy.getInitialComponent(JInternalFrame frame)
           
 void JInternalFrame.JDesktopIcon.setInternalFrame(JInternalFrame f)
          This method sets the JInternalFrame that this JDesktopIcon represents.
 void JDesktopPane.setSelectedFrame(JInternalFrame frame)
          This method sets the selected frame in the JDesktopPane.
 void DesktopManager.openFrame(JInternalFrame frame)
          This method will cause the JInternalFrame to be displayed in the set location.
 void DesktopManager.closeFrame(JInternalFrame frame)
          This method should remove the JInternalFrame from its parent.
 void DesktopManager.maximizeFrame(JInternalFrame frame)
          This method should maximize the JInternalFrame to match its parent's bounds.
 void DesktopManager.minimizeFrame(JInternalFrame frame)
          This method should restore the JInternalFrame to its normal bounds.
 void DesktopManager.iconifyFrame(JInternalFrame frame)
          This method should remove the JInternalFrame from its parent and replace it with a JDesktopIcon.
 void DesktopManager.deiconifyFrame(JInternalFrame frame)
          This method should remove the JDesktopIcon from its parent and replace it with the JInternalFrame that the JDesktopIcon represents.
 void DesktopManager.activateFrame(JInternalFrame vframe)
          This method should give focus to the JInternalFrame and its default focus owner.
 void DesktopManager.deactivateFrame(JInternalFrame frame)
          This method should be called when the JInternalFrame gets deselected and subsequently loses focus.
 void DefaultDesktopManager.openFrame(JInternalFrame frame)
          This method is not normally called since the user will typically add the JInternalFrame to a Container.
 void DefaultDesktopManager.closeFrame(JInternalFrame frame)
          This method removes the JInternalFrame and JDesktopIcon (if one is present) from their parents.
 void DefaultDesktopManager.maximizeFrame(JInternalFrame frame)
          This method resizes the JInternalFrame to match its parent's bounds.
 void DefaultDesktopManager.minimizeFrame(JInternalFrame frame)
          This method restores the JInternalFrame's bounds to what they were previous to the setMaximize call.
 void DefaultDesktopManager.iconifyFrame(JInternalFrame frame)
          This method removes the JInternalFrame from its parent and adds its JDesktopIcon representation.
 void DefaultDesktopManager.deiconifyFrame(JInternalFrame frame)
          This method removes the JInternalFrame's JDesktopIcon representation and adds the JInternalFrame back to its parent.
 void DefaultDesktopManager.activateFrame(JInternalFrame frame)
          This method activates the JInternalFrame by moving it to the front and selecting it.
 void DefaultDesktopManager.deactivateFrame(JInternalFrame frame)
          This method is called when the JInternalFrame loses focus.
protected  void DefaultDesktopManager.removeIconFor(JInternalFrame frame)
          This is a helper method that removes the JDesktopIcon of the given JInternalFrame from the parent.
protected  java.awt.Rectangle DefaultDesktopManager.getBoundsForIconOf(JInternalFrame frame)
          This method is called by iconifyFrame to determine the bounds of the JDesktopIcon for the given JInternalFrame.
protected  void DefaultDesktopManager.setPreviousBounds(JInternalFrame frame, java.awt.Rectangle rect)
          This method sets the bounds of the JInternalFrame right before the maximizeFrame call.
protected  java.awt.Rectangle DefaultDesktopManager.getPreviousBounds(JInternalFrame frame)
          This method returns the normal bounds of the JInternalFrame from before the maximize call.
protected  void DefaultDesktopManager.setWasIcon(JInternalFrame frame, java.lang.Boolean value)
          This method sets the value to true if the given JInternalFrame has been iconized and the bounds of its DesktopIcon are valid.
protected  boolean DefaultDesktopManager.wasIcon(JInternalFrame frame)
          This method returns true if the given JInternalFrame has been iconized and the bounds of its DesktopIcon are valid.
private static void JOptionPane.startModal(JInternalFrame f)
          This helper method makes the JInternalFrame wait until it is notified by an InternalFrameClosing event.
 

Constructors in javax.swing with parameters of type JInternalFrame
JInternalFrame.JDesktopIcon(JInternalFrame f)
          Creates a new JDesktopIcon object for representing the given frame.