kAWT Version 0.98

java.awt
Class Frame

java.lang.Object
  |
  +--java.awt.Component
        |
        +--java.awt.Container
              |
              +--java.awt.Window
                    |
                    +--java.awt.Frame

public class Frame
extends Window


Fields inherited from class java.awt.Container
insets
 
Constructor Summary
Frame()
           
Frame(String t)
           
 
Method Summary
 Dimension getMinimumSize()
           
 boolean isFocusTraversable()
           
 void paintAll(Graphics g)
           
 void processMouseEvent(MouseEvent me)
          Does not work because of the type cast Problem!
 void setMenuBar(MenuBar menuBar)
           
 void setTitle(String title)
          if the screen height is < 160, the title is set to null automatically!!!
 
Methods inherited from class java.awt.Window
addWindowListener, dispose, getFocusOwner, getToolkit, pack, setVisible, show
 
Methods inherited from class java.awt.Container
add, add, add, doLayout, findComponentAt, getComponent, getComponentCount, getComponents, getInsets, getLayout, isAncestorOf, paintComponents, remove, removeAll, setLayout, update, validate
 
Methods inherited from class java.awt.Component
addKeyListener, addMouseListener, addMouseMotionListener, contains, getBackground, getBounds, getFont, getFontMetrics, getForeground, getGraphics, getHeight, getLocationOnScreen, getMaximumSize, getParent, getPreferredSize, getSize, getWidth, getX, getY, hasFocus, invalidate, isEnabled, isValid, isVisible, paint, processKeyEvent, repaint, repaint, requestFocus, setBackground, setBounds, setEnabled, setForeground, setLocation, setSize, setSize
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Frame

public Frame()

Frame

public Frame(String t)
Method Detail

getMinimumSize

public Dimension getMinimumSize()
Overrides:
getMinimumSize in class Container

setMenuBar

public void setMenuBar(MenuBar menuBar)

setTitle

public void setTitle(String title)
if the screen height is < 160, the title is set to null automatically!!!

isFocusTraversable

public boolean isFocusTraversable()
Overrides:
isFocusTraversable in class Container

paintAll

public void paintAll(Graphics g)
Overrides:
paintAll in class Container

processMouseEvent

public void processMouseEvent(MouseEvent me)
Description copied from class: Component
Does not work because of the type cast Problem! All event sources call the specialized method (e.g. processMouseEvent) directly
Overrides:
processMouseEvent in class Component

kAWT Version 0.98