aboutsummaryrefslogtreecommitdiff
path: root/libjava/gnu/awt/xlib/XGraphicsEnvironment.java
diff options
context:
space:
mode:
authorAndrew Haley <aph@redhat.com>2016-09-30 16:24:48 +0000
committerAndrew Haley <aph@gcc.gnu.org>2016-09-30 16:24:48 +0000
commit07b78716af6a9d7c9fd1e94d9baf94a52c873947 (patch)
tree3f22b3241c513ad168c8353805614ae1249410f4 /libjava/gnu/awt/xlib/XGraphicsEnvironment.java
parenteae993948bae8b788c53772bcb9217c063716f93 (diff)
downloadgcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.zip
gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.gz
gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.bz2
Makefile.def: Remove libjava.
2016-09-30 Andrew Haley <aph@redhat.com> * Makefile.def: Remove libjava. * Makefile.tpl: Likewise. * Makefile.in: Regenerate. * configure.ac: Likewise. * configure: Likewise. * gcc/java: Remove. * libjava: Likewise. From-SVN: r240662
Diffstat (limited to 'libjava/gnu/awt/xlib/XGraphicsEnvironment.java')
-rwxr-xr-xlibjava/gnu/awt/xlib/XGraphicsEnvironment.java59
1 files changed, 0 insertions, 59 deletions
diff --git a/libjava/gnu/awt/xlib/XGraphicsEnvironment.java b/libjava/gnu/awt/xlib/XGraphicsEnvironment.java
deleted file mode 100755
index 64c7990..0000000
--- a/libjava/gnu/awt/xlib/XGraphicsEnvironment.java
+++ /dev/null
@@ -1,59 +0,0 @@
-/* Copyright (C) 2005 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-package gnu.awt.xlib;
-
-import java.awt.GraphicsEnvironment;
-import java.awt.GraphicsDevice;
-import java.awt.Graphics2D;
-import java.awt.Font;
-import java.awt.image.BufferedImage;
-import java.util.Locale;
-
-public class XGraphicsEnvironment extends GraphicsEnvironment
-{
- private XToolkit toolkit;
- private XGraphicsDevice [] devices;
-
- XGraphicsEnvironment (XToolkit toolkit)
- {
- this.toolkit = toolkit;
- devices = new XGraphicsDevice [1];
- devices [0] = new XGraphicsDevice (0,toolkit);
- }
-
- public GraphicsDevice[] getScreenDevices ()
- {
- return devices;
- }
-
- public GraphicsDevice getDefaultScreenDevice ()
- {
- return devices [0];
- }
-
- public Graphics2D createGraphics (BufferedImage image)
- {
- throw new UnsupportedOperationException ("createGraphics not implemented yet in " + this.getClass ().getName ());
- }
-
- public Font[] getAllFonts()
- {
- throw new UnsupportedOperationException ("getAllFonts not implemented yet in " + this.getClass ().getName ());
- }
-
- public String[] getAvailableFontFamilyNames (Locale l)
- {
- throw new UnsupportedOperationException ("getAvailableFontFamilyNames not implemented yet in " + this.getClass ().getName ());
- }
-
- public String[] getAvailableFontFamilyNames ()
- {
- throw new UnsupportedOperationException ("getAvailableFontFamilyNames not implemented yet in " + this.getClass ().getName ());
- }
-}