List of usage examples for org.eclipse.jface.dialogs Dialog subclass-usage
From source file com.byterefinery.rmbench.dialogs.ForeignKeyConfigurator.java
/**
* a dialog thhat allows to configure a foreign key, by specifying the key columns
* and the target table
*
* @author cse
*/
From source file com.byterefinery.rmbench.dialogs.JdbcParametersDialog.java
/** * The Dialog to add some additional options to a jdbc url. * @author Hannes Niederhausen */ public class JdbcParametersDialog extends Dialog {
From source file com.byterefinery.rmbench.dialogs.KeyEditorDialog.java
/** * a dialog for editing keys (primary or unique) by adding or moving columns * * @author cse */ public class KeyEditorDialog extends Dialog {
From source file com.byterefinery.rmbench.dialogs.LicenseDetailsDialog.java
/** * The Dialog that shows the current license details in a table * * @author cse */ public class LicenseDetailsDialog extends Dialog {
From source file com.byterefinery.rmbench.dialogs.ModelPropertiesDialog.java
/** * dialog to edit model properties like name & database. Modifies the model if OK is pressed * * @author cse */ public class ModelPropertiesDialog extends Dialog {
From source file com.byterefinery.rmbench.dialogs.NewDiagramDialog.java
/** * dialog for querying diagram creation properties from the user * * @author cse */ public class NewDiagramDialog extends Dialog {
From source file com.byterefinery.rmbench.dialogs.PrinterSetupDialog.java
public class PrinterSetupDialog extends Dialog { private ComboViewer printerCombo; private Shell parentShell; private PrinterData selectedPrinter;
From source file com.byterefinery.rmbench.export.CompareValuesDialog.java
/**
* a dialog that shows the compared values in two multiline text fields, with differences
* highlighted
*
* @author cse
*/
From source file com.centurylink.mdw.plugin.designer.dialogs.LoginDialog.java
public class LoginDialog extends Dialog { private final static int HORIZONTAL_INDENT = 143; private final static int VERTICAL_INDENT = 158; private final static int MESSAGE_WIDTH = 250; private final static int BUTTON_WIDTH = 80;
From source file com.cisco.yangide.ext.model.editor.dialog.MultilineTextDialog.java
public class MultilineTextDialog extends Dialog { private Composite composite; private String originalValue; private String value; private String title; private Text textControl;