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

Examples of net.sf.arianne.marboard.client.gui.toolbar.ToolBarBuilder


    // 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);
    frame.add(panel);

    // menu par
    frame.setJMenuBar(new MenuBuilder(this, board, boardState).create());
View Full Code Here

TOP

Related Classes of net.sf.arianne.marboard.client.gui.toolbar.ToolBarBuilder

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.