Package org.epic.perleditor.templates.ui.dialog

Examples of org.epic.perleditor.templates.ui.dialog.StatusInfo


  }
 
  private void updateButtons() {   
    boolean valid= fNameText.getText().trim().length() != 0;

    StatusInfo status= new StatusInfo();
   
    if (!valid) {
      if (fSuppressError)
        status.setError(""); //$NON-NLS-1$             
      else
        status.setError(TemplateMessages.getString("EditTemplateDialog.error.noname")); //$NON-NLS-1$
     } else if (fTranslator.getErrorMessage() != null) {
       status.setError(fTranslator.getErrorMessage())
    }

    updateStatus(status);
  }
View Full Code Here

TOP

Related Classes of org.epic.perleditor.templates.ui.dialog.StatusInfo

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.