コード例 #1
0
 protected PropertyDialogWizard(ToadEditor editor, AbstractModel model, boolean directEdit) {
   this.project = editor.getProject();
   this.editor = editor;
   this.srcModel = model;
   this.directEdit = directEdit;
   if (directEdit) {
     this.model = model;
   } else {
     this.model = model.cloneEdit();
   }
   setNeedsProgressMonitor(true);
 }
コード例 #2
0
 private void validate(List<IStatus> list) {
   model.validate(ValidateType.DESIGN, true, list); // TODO ValidateType
 }