List of usage examples for org.eclipse.jface.dialogs MessageDialog subclass-usage
From source file net.rim.ejde.internal.util.BrowseSearchDialog.java
public class BrowseSearchDialog extends MessageDialog { private final String _fileName; private String _chosenFilePath; private Shell _parentShell; // these constants must correspond with order buttons are added in // constructor
From source file net.rim.ejde.internal.util.PromptDialog.java
public class PromptDialog extends MessageDialog { protected Text _promptText; private boolean _obscure = false; private String _response; private String _initialAnswer;
From source file net.sf.vex.editor.DocumentTypeSelectionDialog.java
/** * Dialog presented to the user to select a document type it cannot be * determined from the document being opened. */ public class DocumentTypeSelectionDialog extends MessageDialog {
From source file net.sourceforge.texlipse.actions.InputQueryDialog.java
/**
* A simple dialog window with "ok" and "cancel" -buttons,
* a label and a text field.
*
* This is almost like org.eclipse.jface.dialogs.InputDialog, but
* this version has an image and creation-time-settable button texts.
From source file net.ssehub.easy.producer.ui.productline_editor.MessageDialogWithCopy.java
/**
* SWT MEssagebox with a text field allowing copy pasting the message.
* @see <a href="http://stackoverflow.com/questions/30630092/copy-and-paste-messagedialog-message">
* http://stackoverflow.com/questions/30630092/copy-and-paste-messagedialog-message</a>
* @author El-Sharkawy
*/
From source file net.timedoctor.internal.ui.UnparsedMessageDialog.java
public class UnparsedMessageDialog extends MessageDialog { private static final String COPY_LABEL = "Copy"; private String unParsedLines; private StyledText text;
From source file no.itpr.parser.handlers.internal.FileDialog.java
public class FileDialog extends MessageDialog { private File selectedFile; private FileParser parser; public FileDialog(Shell parentShell, File selectedFile) { super(parentShell, selectedFile.getName(), null, "Filename " + selectedFile.getName(), INFORMATION,
From source file no.itpr.parser.handlers.internal.TimeZoneDialog.java
public class TimeZoneDialog extends MessageDialog { private TimeZone timeZone; public TimeZoneDialog(Shell parentShell, TimeZone timeZone) { super(parentShell, timeZone.getID(), null, "Time Zone " + timeZone.getID(), INFORMATION, new String[] { IDialogConstants.OK_LABEL }, 0);
From source file org.apache.directory.studio.ldapbrowser.common.dialogs.DeleteDialog.java
/** * Dialog that prompts a user to delete items in the browser tree. * * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a> */ public class DeleteDialog extends MessageDialog {
From source file org.apache.directory.studio.ldapservers.dialogs.DeleteServerDialog.java
/** * Dialog that prompts a user to delete server(s) and/or server configuration(s). * * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a> */ public class DeleteServerDialog extends MessageDialog {