Package com.andrewnatoli.jbug.controlpanel.project

Examples of com.andrewnatoli.jbug.controlpanel.project.ProjectView


     * Create a new project
     */
    public static void showProject() {
        System.out.println("[ControlPanelController] Showing new project editor");
        contentPanel.removeAll();
        contentPanel.add(new ProjectView());
        controlPanelFrame.pack();
        System.out.println("[ControlPanelController] There it is!");
    }
View Full Code Here


            System.out.println("[ControlPanelController] Showing project editor");
            System.out.println("[ControlPanelController->showProject] Checking row " + project_id);
            contentPanel.removeAll();
            project_id = model.projects.get(project_id).getProject_id(); //Get the project ID from the row we selected
            System.out.println("[ControlPanelController->showProject] Found Project " + project_id);
            contentPanel.add(new ProjectView(project_id));
            controlPanelFrame.pack();
            System.out.println("[ControlPanelController] There it is!");
        }
        else
            JOptionPane.showMessageDialog(null,"Select a project to edit.");
View Full Code Here

TOP

Related Classes of com.andrewnatoli.jbug.controlpanel.project.ProjectView

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.