Package net.sf.arianne.marboard.client.gui.component

Examples of net.sf.arianne.marboard.client.gui.component.DrawingArea


    // size and layout
    frame.setSize(new Dimension(640, 440));
    frame.setLayout(new BorderLayout());

    // drawing area
    drawingArea = new DrawingArea(board, boardState);

    // pannel for the toolbar and drawing area
    JPanel panel = new JPanel(new BorderLayout());
    panel.add(new ToolBarBuilder().createToolBar(boardState,this),BorderLayout.NORTH);
    panel.add(drawingArea, BorderLayout.CENTER);
View Full Code Here

TOP

Related Classes of net.sf.arianne.marboard.client.gui.component.DrawingArea

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.