Examples of DozerFormEditor


Examples of org.dozer.eclipse.plugin.editorpage.DozerFormEditor

    //create the default WST pages
    super.createPages();
   
    try {
      //create the dozer page
      dozerFormEditor = new DozerFormEditor(this);
     
      //add the new dozer page
      fDozerPageIndex = this.addPage(dozerFormEditor, this.getEditorInput());
      setPageText(fDozerPageIndex, Messages.getString("DozerMappingEditor.label")); //$NON-NLS-1$
     
View Full Code Here

Examples of org.dozer.eclipse.plugin.editorpage.DozerFormEditor

   * @see org.eclipse.ui.forms.events.IHyperlinkListener#linkActivated(org.eclipse.ui.forms.events.HyperlinkEvent)
   */
  public void linkActivated(HyperlinkEvent e) {
    String href = (String) e.getHref();
    if ("jumpToGlobalPage".equals(href)) {
      DozerFormEditor dozerEditor = ((DozerFormEditor)formPage.getEditor());
     
      dozerEditor.setActivePage(DozerConfigurationEditorPage.PAGE_ID);
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.