* libjava/gnu/awt/gtk/GtkButtonPeer.java: Fix misspelling of
[official-gcc.git] / libjava / gnu / awt / gtk / GtkContainerPeer.java
blob18f4f6b75eac2237b71ecda1ca500dc899e2b30b
1 /* GtkContainerPeer.java -- Implements ContainerPeer with GTK
2 Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
4 This file is part of the peer AWT libraries of GNU Classpath.
6 This library is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Library General Public License as published
8 by the Free Software Foundation, either version 2 of the License, or
9 (at your option) any later version.
11 This library is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public License
17 along with this library; if not, write to the Free Software Foundation
18 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA. */
21 package gnu.awt.gtk;
23 import java.awt.*;
24 import java.awt.event.*;
25 import java.awt.peer.ContainerPeer;
27 public abstract class GtkContainerPeer extends GtkComponentPeer
28 implements ContainerPeer
30 // FIXME?
31 static Insets insets = new Insets(0,0,0,0);
33 protected GtkContainerPeer (Container awtContainer)
35 super (awtContainer);
38 public Insets getInsets()
40 // FIXME?
41 return insets;
44 public void beginValidate()
46 // FIXME
49 public void endValidate()
51 // FIXME
54 protected native void create();