Package editor.model

Examples of editor.model.EventModel


     * @param editorModel
     * @param position
     * @see EditorModel
     */
    public InitEventScreen(final EditorModel editorModel, final Point position) {
        this.eventModel = new EventModel(editorModel, position);
        initComponents();
        currentPanel = eventModel.getOnScreen();
        sousFrame.setContentPane(currentPanel);
        this.setVisible(true);
        this.setLocationRelativeTo(null);
View Full Code Here


     * @param eventBloc
     * @see EditorModel
     * @see EventBloc
     */
    public InitEventScreen(final EditorModel editorModel, Point position, final EventBloc eventBloc) {
        this.eventModel = new EventModel(editorModel, position, eventBloc);
        initComponents();
        currentPanel = eventModel.getOnScreen();
        sousFrame.setContentPane(currentPanel);
        this.setVisible(true);
        this.setLocationRelativeTo(null);
View Full Code Here

TOP

Related Classes of editor.model.EventModel

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.