Package org.jcsp.awt

Examples of org.jcsp.awt.ActiveClosingFrame


    public void run() {
        System.out.println("New Meeting Client User Interface started");
        // set up the user interface
        // an active frame with border layout containing three containers
        final ActiveClosingFrame main = new ActiveClosingFrame("Create New Meeting");
        final Frame root = main.getActiveFrame();
        root.setLayout(new BorderLayout());
        root.setSize(320, 480);
        // north is the user input container
        final Container inputContainer = new Container();
        inputContainer.setLayout(new GridLayout(2, 2));
View Full Code Here


    }

    public void run() {
        // set up the user interface
        // an active frame with border layout containing three containers
        final ActiveClosingFrame main = new ActiveClosingFrame("Find Meeting");
        final Frame root = main.getActiveFrame();
        root.setLayout(new BorderLayout());
        root.setSize(320, 480);
        // north is the user input container
        final Container inputContainer = new Container();
        inputContainer.setLayout(new GridLayout(2, 1));
View Full Code Here

    public AccessClientUserInterface(ChannelOutput buttonEvent) {
        this.buttonEvent = buttonEvent;
    }

    public void run() {
        final ActiveClosingFrame root = new ActiveClosingFrame("Jon's Meeting Service");
        final Frame mainFrame = root.getActiveFrame();
        mainFrame.setSize(320, 480);
        mainFrame.setLayout(new BorderLayout());
        final ActiveButton newButton = new ActiveButton(null, buttonEvent, "Create New Meeting");
        final ActiveButton findButton = new ActiveButton(null, buttonEvent, "Find Existing Meeting");
        final Container buttonContainer = new Container();
View Full Code Here

TOP

Related Classes of org.jcsp.awt.ActiveClosingFrame

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.