Examples of PeoplePanel


Examples of su.litvak.moviedb.gui.PeoplePanel

        f.setTitle("Simple Movies DB");
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JTabbedPane tp = new JTabbedPane();
        tp.addTab("Movies", new MoviesPanel());
        tp.addTab("People", new PeoplePanel());
        tp.addTab("Genres", new GenresPanel());
        f.getContentPane().add(tp);
        f.setVisible(true);
        f.setBounds(0,0,640,480);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.