< prev index next >

src/java.desktop/unix/classes/sun/awt/X11/XScrollPanePeer.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2002, 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

@@ -139,20 +139,22 @@
             setViewportSize();
         }
         repaint();
     }
 
+    @SuppressWarnings("deprecation")
     Dimension getChildSize() {
         ScrollPane sp = (ScrollPane)target;
         if (sp.countComponents() > 0) {
             Component c = sp.getComponent(0);
             return c.size();
         } else {
             return new Dimension(0, 0);
         }
     }
 
+    @SuppressWarnings("deprecation")
     boolean setScrollbarSpace() {
         ScrollPane sp = (ScrollPane)target;
         boolean changed = false;
         int sbDisplayPolicy = sp.getScrollbarDisplayPolicy();
 

@@ -266,10 +268,11 @@
     }
 
     /**
      * Scroll the contents to position x, y
      */
+    @SuppressWarnings("deprecation")
     void scroll(int x, int y, int flag, int type) {
         checkSecurity();
         ScrollPane sp = (ScrollPane)target;
         Component c = getScrollChild();
         if (c == null) {

@@ -567,10 +570,11 @@
     /*
      * Print the native component by rendering the Motif look ourselves.
      * ToDo(aim): needs to query native motif for more accurate size and
      * color information.
      */
+    @SuppressWarnings("deprecation")
     public void print(Graphics g) {
         ScrollPane sp = (ScrollPane)target;
         Dimension d = sp.size();
         Color bg = sp.getBackground();
         Color fg = sp.getForeground();
< prev index next >