diff options
author | Andrew Haley <aph@redhat.com> | 2016-09-30 16:24:48 +0000 |
---|---|---|
committer | Andrew Haley <aph@gcc.gnu.org> | 2016-09-30 16:24:48 +0000 |
commit | 07b78716af6a9d7c9fd1e94d9baf94a52c873947 (patch) | |
tree | 3f22b3241c513ad168c8353805614ae1249410f4 /libjava/gnu/awt/xlib/XGraphicsDevice.java | |
parent | eae993948bae8b788c53772bcb9217c063716f93 (diff) | |
download | gcc-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/XGraphicsDevice.java')
-rwxr-xr-x | libjava/gnu/awt/xlib/XGraphicsDevice.java | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/libjava/gnu/awt/xlib/XGraphicsDevice.java b/libjava/gnu/awt/xlib/XGraphicsDevice.java deleted file mode 100755 index 4fe1c23..0000000 --- a/libjava/gnu/awt/xlib/XGraphicsDevice.java +++ /dev/null @@ -1,58 +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.GraphicsDevice; -import java.awt.GraphicsConfiguration; - -public class XGraphicsDevice extends GraphicsDevice -{ - private int id; - private String IDstring; - private GraphicsConfiguration[] configs; - - public int getType() - { - return TYPE_RASTER_SCREEN; - } - - public XGraphicsDevice(int id, XToolkit toolkit) - { - this.id = id; - IDstring = "XGraphicsDevice " + id; - configs = new GraphicsConfiguration [1]; - configs[0] = toolkit.getDefaultXGraphicsConfiguration(); - } - - public String getIDstring() - { - return IDstring; - } - - public GraphicsConfiguration[] getConfigurations() - { - return configs; - } - - public GraphicsConfiguration getDefaultConfiguration() - { - return configs[0]; - } - - public boolean isDisplayChangeSupported() - { - return false; - } - - public boolean isFullScreenSupported() - { - return false; - } -} - |