diff options
Diffstat (limited to 'libjava/classpath/javax/swing/JFrame.java')
-rw-r--r-- | libjava/classpath/javax/swing/JFrame.java | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/libjava/classpath/javax/swing/JFrame.java b/libjava/classpath/javax/swing/JFrame.java index 0c956b3969e..074d1c7d3d0 100644 --- a/libjava/classpath/javax/swing/JFrame.java +++ b/libjava/classpath/javax/swing/JFrame.java @@ -64,7 +64,7 @@ import javax.accessibility.AccessibleContext; * * Also, unlike <code>java.awt.Frame</code>s, JFrames support the * Swing Pluggable Look & Feel architecture. - * + * * @author Ronald Veldema (rveldema@cs.vu.nl) */ public class JFrame extends Frame @@ -100,7 +100,7 @@ public class JFrame extends Frame private int closeAction = HIDE_ON_CLOSE; protected AccessibleContext accessibleContext; protected JRootPane rootPane; - + /** * @specnote rootPaneCheckingEnabled is false to comply with J2SE 5.0 */ @@ -117,7 +117,7 @@ public class JFrame extends Frame /** * Creates a new <code>JFrame</code> with the specified title. - * + * * @param title the frame title (<code>null</code> permitted). */ public JFrame(String title) @@ -307,7 +307,7 @@ public class JFrame extends Frame } /** - * Returns the object that provides accessibility features for this + * Returns the object that provides accessibility features for this * <code>JFrame</code>. * * @return The accessible context (an instance of {@link AccessibleJFrame}). @@ -322,11 +322,11 @@ public class JFrame extends Frame /** * Returns a code for the default operation when the frame is closed. The * default value is {@link WindowConstants#HIDE_ON_CLOSE}. - * + * * @return One of: {@link WindowConstants#DO_NOTHING_ON_CLOSE}, - * {@link WindowConstants#HIDE_ON_CLOSE}, + * {@link WindowConstants#HIDE_ON_CLOSE}, * {@link WindowConstants#DISPOSE_ON_CLOSE}, {@link #EXIT_ON_CLOSE}. - * + * * @see #setDefaultCloseOperation(int) */ public int getDefaultCloseOperation() @@ -336,9 +336,9 @@ public class JFrame extends Frame /** * Returns a string describing the attributes for the <code>JFrame</code>, - * for use in debugging. The return value is guaranteed to be + * for use in debugging. The return value is guaranteed to be * non-<code>null</code>, but the format may vary between implementations. - * + * * @return A string describing the attributes of the <code>JFrame</code>. */ protected String paramString() @@ -360,38 +360,38 @@ public class JFrame extends Frame if (e.getID() == WindowEvent.WINDOW_CLOSING) { switch (closeAction) - { - case EXIT_ON_CLOSE: - System.exit(0); - break; - case DISPOSE_ON_CLOSE: - dispose(); - break; - case HIDE_ON_CLOSE: - setVisible(false); - break; - case DO_NOTHING_ON_CLOSE: - break; - } + { + case EXIT_ON_CLOSE: + System.exit(0); + break; + case DISPOSE_ON_CLOSE: + dispose(); + break; + case HIDE_ON_CLOSE: + setVisible(false); + break; + case DO_NOTHING_ON_CLOSE: + break; + } } } /** * Sets the default operation that is performed when this frame is closed. - * The default is <code>HIDE_ON_CLOSE</code>. When + * The default is <code>HIDE_ON_CLOSE</code>. When * <code>EXIT_ON_CLOSE</code> is specified this method calls * <code>SecurityManager.checkExit(0)</code> which might throw a * <code>SecurityException</code>. - * - * @param operation a code for the operation (one of: - * {@link WindowConstants#DO_NOTHING_ON_CLOSE}, - * {@link WindowConstants#HIDE_ON_CLOSE}, - * {@link WindowConstants#DISPOSE_ON_CLOSE} and + * + * @param operation a code for the operation (one of: + * {@link WindowConstants#DO_NOTHING_ON_CLOSE}, + * {@link WindowConstants#HIDE_ON_CLOSE}, + * {@link WindowConstants#DISPOSE_ON_CLOSE} and * {@link WindowConstants#EXIT_ON_CLOSE}). - * + * * @throws IllegalArgumentException if <code>operation</code> is not one of * the specified codes. - * + * * @see #getDefaultCloseOperation() */ public void setDefaultCloseOperation(int operation) @@ -402,7 +402,7 @@ public class JFrame extends Frame if (operation != EXIT_ON_CLOSE && operation != DISPOSE_ON_CLOSE && operation != HIDE_ON_CLOSE && operation != DO_NOTHING_ON_CLOSE) - throw new IllegalArgumentException("operation must be EXIT_ON_CLOSE, " + throw new IllegalArgumentException("operation must be EXIT_ON_CLOSE, " + "HIDE_ON_CLOSE, DISPOSE_ON_CLOSE, or DO_NOTHING_ON_CLOSE"); closeAction = operation; |