diff options
| author | Paul Fisher <rao@gnu.org> | 1999-10-04 01:58:20 +0000 |
|---|---|---|
| committer | Paul Fisher <rao@gnu.org> | 1999-10-04 01:58:20 +0000 |
| commit | a6b3e437fb573c075e59a08811a1c2f8f1602e83 (patch) | |
| tree | 4bdda13fe1339dc5d674e674ba137e51c9d54c95 /gnu/java/awt/peer/gtk/GtkMenuComponentPeer.java | |
| parent | 638a1044ea04fa80aad48b4179935cf93945f13b (diff) | |
| download | classpath-a6b3e437fb573c075e59a08811a1c2f8f1602e83.tar.gz | |
Handle Insets.
Diffstat (limited to 'gnu/java/awt/peer/gtk/GtkMenuComponentPeer.java')
| -rw-r--r-- | gnu/java/awt/peer/gtk/GtkMenuComponentPeer.java | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/java/awt/peer/gtk/GtkMenuComponentPeer.java b/gnu/java/awt/peer/gtk/GtkMenuComponentPeer.java new file mode 100644 index 000000000..1e5de15ba --- /dev/null +++ b/gnu/java/awt/peer/gtk/GtkMenuComponentPeer.java @@ -0,0 +1,36 @@ +/* + * GtkMenuComponentPeer.java -- Implements MenuComponentPeer with GTK+ + * + * Copyright (c) 1999 Free Software Foundation, Inc. + * + * This library is free software; you can redistribute it and/or modify + * it under the terms of the GNU Library General Public License as published + * by the Free Software Foundation, either version 2 of the License, or + * (at your option) any later verion. + * + * This library is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this library; if not, write to the Free Software Foundation + * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA + */ + +package gnu.java.awt.peer.gtk; +import java.awt.*; +import java.awt.peer.MenuComponentPeer; + +public class GtkMenuComponentPeer extends GtkGenericPeer + implements MenuComponentPeer +{ + public GtkMenuComponentPeer (Object awtWidget) + { + super (awtWidget); + } + + public void dispose () + { + } +} |
