2000-03-17 01:45:06 +01:00
|
|
|
/* Copyright (C) 1999, 2000 Free Software Foundation
|
1999-05-05 13:05:57 +02:00
|
|
|
|
|
|
|
This file is part of libjava.
|
|
|
|
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
|
|
Libjava License. Please consult the file "LIBJAVA_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
package java.awt;
|
|
|
|
|
|
|
|
/* A very incomplete placeholder. */
|
|
|
|
|
|
|
|
public class Menu extends MenuItem implements MenuContainer
|
|
|
|
{
|
|
|
|
public Menu (String label)
|
|
|
|
{
|
|
|
|
super(label); // ???
|
|
|
|
throw new Error ("java.awt.Menu: not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
public void add (String label)
|
|
|
|
{ /* FIXME */ }
|
|
|
|
|
|
|
|
public synchronized MenuItem add (MenuItem item)
|
|
|
|
{
|
|
|
|
/* FIXME */
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Font getFont() { return null; } // FIXME
|
2000-03-24 10:09:56 +01:00
|
|
|
public boolean postEvent(Event evt) { return false; } // FIXME
|
1999-05-05 13:05:57 +02:00
|
|
|
public void remove(MenuComponent comp) { } // FIXME
|
|
|
|
}
|