快速业务通道

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

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-18
.NULL);      label.setText("&Container:");      containerText = new Text(container, SWT.BORDER | SWT.SINGLE);      GridData gd = new GridData(GridData.FILL_HORIZONTAL);      containerText.setLayoutData(gd);      containerText.addModifyListener(new ModifyListener() {        public void modifyText(ModifyEvent e) {          dialogChanged();        }      });      Button button = new Button(container, SWT.PUSH);      button.setText("Browse...");      button.addSelectionListener(new SelectionAdapter() {        public void widgetSelected(SelectionEvent e) {          handleBrowse();        }      });      label = new Label(container, SWT.NULL);      label.setText("&File name:");      fileText = new Text(container, SWT.BORDER | SWT.SINGLE);      gd = new GridData(GridData.FILL_HORIZONTAL);      fileText.setLayoutData(gd);      fileText.addModifyListener(new ModifyListener() {        public void modifyText(ModifyEvent e) {          dialogChanged();        }      });      /* Need to add empty label so the next two controls      * are pushed to the next line in the grid. */      label = new Label(container, SWT.NULL);      label.setText("");      /* Adding the custom control here */      label = new Label(container, SWT.NULL);      label.setText("&Title:");      titleText = new Text(container, SWT.BORDER | SWT.SINGLE);      gd = new GridData(GridData.FILL_HORIZONTAL);      titleText.setLayoutData(gd);      titleText.addModifyListener(new ModifyListener() {        public void modifyText(ModifyEvent e) {          dialogChanged();        }      });      /* Finished adding the custom control */      initialize();      dialogChanged();      setControl(container);    }

在将代码添加到 NewXHTMLFileWizard 类中之前,请通过执行先前概述的步骤测试到目前为止的更改。

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

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

验证用户输入

用户在新向导的 Title 字段中输入的文本将用作新 HTML 文件的 <title> 元素中的文本。出于本文的目的,该值是必需的,因此需要添加检查输入的代码以确保用户输入的内容是没有问题的。

对 dialogChanged() 方法的修改如下所示:

清单 12. 检验 dialogChanged() 中的输入/**    * Ensures that both text fields are set.    */    private void dialogChanged() {      IResource container = ResourcesPlugin.getWorkspace().getRoot()          .findMember(new Path(getContainerName()));      String fileName = getFileName();      String titleText = getTitle();       if (getContainerName().length() == 0) {        updateStatus("File container must be specified");        return;      }      if (container == null          || (container.getType() & (IResource.PROJECT | IResource.FOLDER)) == 0) {     

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站: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号