Package sos.scheduler.editor.doc

Examples of sos.scheduler.editor.doc.NoteDialog


    }


    public static void openNoteDialog(DocumentationDom dom, Element parentElement, String name, String tooltip,
            boolean optional, boolean changeStatus, String title) {
        NoteDialog dialog = new NoteDialog(MainWindow.getSShell(),title);
        dialog.setText("Note Editor");
        dialog.setTooltip(tooltip);
       
        dialog.setParams(dom, parentElement, name, optional, changeStatus);
        dialog.open();
    }
View Full Code Here


    }


    public static void openNoteDialog(DocumentationDom dom, Element parentElement, String name, String tooltip,
            boolean optional, boolean changeStatus, String title, org.eclipse.swt.widgets.Text txt) {
        NoteDialog dialog = new NoteDialog(MainWindow.getSShell(),title);
        dialog.setText("Note Editor");
        //dialog.setUpdateText(txt); //Textfeld soll beim verklassen des Dialogs aktualisert werden
        dialog.setTooltip(tooltip);
       
        dialog.setParams(dom, parentElement, name, optional, changeStatus);
        dialog.open();
    }
View Full Code Here

TOP

Related Classes of sos.scheduler.editor.doc.NoteDialog

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.