< prev index next >

src/java.desktop/share/classes/com/sun/java/swing/plaf/motif/MotifInternalFrameUI.java

Print this page




  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.java.swing.plaf.motif;
  27 
  28 import java.awt.*;
  29 import java.awt.event.*;
  30 import javax.swing.*;
  31 import javax.swing.event.*;
  32 
  33 import java.util.EventListener;
  34 
  35 import javax.swing.plaf.basic.*;
  36 import javax.swing.border.*;
  37 import javax.swing.plaf.*;
  38 
  39 
  40 /**
  41  * A Motif L&F implementation of InternalFrame.
  42  * <p>
  43  * <strong>Warning:</strong>
  44  * Serialized objects of this class will not be compatible with
  45  * future Swing releases.  The current serialization support is appropriate
  46  * for short term storage or RMI between applications running the same
  47  * version of Swing.  A future release of Swing will provide support for
  48  * long term persistence.
  49  *
  50  * @author Tom Ball
  51  */
  52 public class MotifInternalFrameUI extends BasicInternalFrameUI {
  53 
  54     Color color;
  55     Color highlight;
  56     Color shadow;
  57     MotifInternalFrameTitlePane titlePane;
  58 
  59     /**
  60      * As of Java 2 platform v1.3 this previously undocumented field is no
  61      * longer used.




  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.java.swing.plaf.motif;
  27 
  28 import java.awt.*;
  29 import java.awt.event.*;
  30 import javax.swing.*;
  31 import javax.swing.event.*;
  32 
  33 import java.util.EventListener;
  34 
  35 import javax.swing.plaf.basic.*;
  36 import javax.swing.border.*;
  37 import javax.swing.plaf.*;
  38 
  39 
  40 /**
  41  * A Motif {@literal L&F} implementation of InternalFrame.
  42  * <p>
  43  * <strong>Warning:</strong>
  44  * Serialized objects of this class will not be compatible with
  45  * future Swing releases.  The current serialization support is appropriate
  46  * for short term storage or RMI between applications running the same
  47  * version of Swing.  A future release of Swing will provide support for
  48  * long term persistence.
  49  *
  50  * @author Tom Ball
  51  */
  52 public class MotifInternalFrameUI extends BasicInternalFrameUI {
  53 
  54     Color color;
  55     Color highlight;
  56     Color shadow;
  57     MotifInternalFrameTitlePane titlePane;
  58 
  59     /**
  60      * As of Java 2 platform v1.3 this previously undocumented field is no
  61      * longer used.


< prev index next >