Changeset 849 for trunk/quest-ui-swt/src/main/java/de
- Timestamp:
- 09/21/12 14:21:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-ui-swt/src/main/java/de/ugoe/cs/quest/ui/swt/ShowGuiModelDialog.java
r847 r849 23 23 import org.eclipse.swt.widgets.Label; 24 24 25 /**26 * <p>27 * TODO comment28 * </p>29 *30 * @version $Revision: $ $Date: Aug 28, 2012$31 * @author 2012, last modified by $Author: sherbold$32 */33 25 public class ShowGuiModelDialog extends Dialog { 34 26 … … 38 30 protected GUIModel model; 39 31 40 /**41 * Create the dialog.42 *43 * @param parent44 * @param style45 */46 32 public ShowGuiModelDialog(Shell parent, int style, GUIModel model, String modelName) { 47 33 super(parent, style); … … 50 36 } 51 37 52 /**53 * Open the dialog.54 *55 * @return the result56 */57 38 public void open() { 58 39 createContents(); … … 67 48 } 68 49 69 /**70 * Create contents of the dialog.71 */72 50 private void createContents() { 73 51 shell = new Shell(getParent(), SWT.SHELL_TRIM | SWT.BORDER | SWT.APPLICATION_MODAL);
Note: See TracChangeset
for help on using the changeset viewer.