快速业务通道

使用Eclipse向导进行快速开发 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-18
   updateStatus("File container must exist");        return;      }      if (!container.isAccessible()) {        updateStatus("Project must be writable");        return;      }      if (fileName.length() == 0) {        updateStatus("File name must be specified");        return;      }      if (fileName.replace(''\\'', ''/'').indexOf(''/'', 1) > 0) {        updateStatus("File name must be valid");        return;      }      int dotLoc = fileName.lastIndexOf(''.'');      if (dotLoc != -1) {        String ext = fileName.substring(dotLoc + 1);        if (ext.equalsIgnoreCase("html") == false) {          updateStatus("File extension must be \"html\"");          return;        }      }      if (titleText.length() ==0 )      {        updateStatus("Title must be specified");        return;      }      updateStatus(null);    }

完成这些更改后,如果不输入 Title 值,向导将提供错误消息。此外,Finish 按钮将被禁用,直至为 Title 指定了值为止。通过使用先前概述的步骤运行插件项目来检验此功能。

使用Eclipse向导进行快速开发(9)

时间:2011-03-06 IBM Nathan A. Good

添加自定义内容

向导页面 NewXHTMLFileWizardPage 现在将捕捉用户输入的 HTML 标题的值,但是它尚未把该值合并到文件中。要开始将该值添加到文件中,首先需要编辑 index-xhtml-template.resource 文件使其包含该值的占位符。您可以将 <title> 元素更改为 <title>${title}</title>,这样可以更轻松地包含占位符。

修改 performFinish() 方法以从向导页面获得标题并将标题传递给 doFinish() 方法以及其余值。

清单 13. 最终的 performFinish() 方法/**    * This method is called when ''Finish'' button is pressed in the wizard. We    * will create an operation and run it using wizard as execution context.    */    public boolean performFinish() {      final String containerName = page.getContainerName();      final String fileName = page.getFileName();      final String title = page.getTitle();      IRunnableWithProgress op = new IRunnableWithProgress() {        public void run(IProgressMonitor monitor)            throws InvocationTargetException {          try {            doFinish(containerName, fileName, title, monitor);          } catch (CoreException e) {            throw new InvocationTargetException(e);          } finally {            monitor.done();          }        }      };      try {        getContainer().run(true, false, op);      } catch (InterruptedException e) {        return false;      } catch (InvocationTargetException e) {        Throwable realException = e.getTargetException();        MessageDialog.openError(getShell(), "Error", realException            .getMessage());        return false;     

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号