Code:
public class InventoryGui extends JFrame //begin class InventoryGui
{
private JLabel items; // JLabel with just text
public InventoryGui()
{
setLayout( new FlowLayout() );
items = new JLabel("text");
add(items);
}
public static void main( String
Leave a comment: