src/macosx/classes/com/apple/laf/AquaInternalFramePaneUI.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -114,10 +114,11 @@
         public void layoutContainer(final Container parent) {
             if (fDock != null) ((Dock)fDock).updateSize();
         }
     }
 
+    @SuppressWarnings("serial") // Superclass is not serializable across versions
     class Dock extends JComponent implements Border {
         static final int DOCK_EDGE_SLACK = 8;
 
         Dock(final JComponent parent) {
             setBorder(this);

@@ -183,10 +184,11 @@
 
             if (priorAA != null) g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, priorAA);
         }
     }
 
+    @SuppressWarnings("serial") // JDK implementation class
     class AquaDockingDesktopManager extends AquaInternalFrameManager {
         public void openFrame(final JInternalFrame f) {
             final JInternalFrame.JDesktopIcon desktopIcon = f.getDesktopIcon();
             final Container dock = desktopIcon.getParent();
             if (dock == null) return;