热烈庆祝BuildFileDesigner被SourceForge.Net收录!
  BuildFileDesigner
  VivianJ Orgnization
  Join VivianJ
  Contact
  About Vivianj
  
  
  
BuildFileDesigner User Guide
中文版
Intro History Developers New Feature  Installation Guide Custumize @TODO 

  
New Version : 1.2.36

一、Introduction
  BuildFileDesigner项目提供一个eclipse的插件(org.vivianj.eclipse.plugin.buildfile),实现了通过GUI界面编写、维护支持ant的buildfile的功能,同时支持人工修改。
  
  
主要特征:
   1、提供Winzard,可以方便的生成初始buildfile
   2、将buildfile映射为树,通过对树的操作实现buildfile的操作
   3、提供GUI界面,使用者不需要自己记住元素和元素的属性
   4、buildfile编写、修改后可通过eclipse的ant视图立即执行
   5、默认支持简体中文和英文,可以自由扩充到支持多国语言
   6、在Windows 2000/RedHat Linux 9.0、Eclipse 3.0/2.1.0环境下通过测试
  
二、Release Hsitory
Release Date Version Downliad Complete Rate (%) Note
 2004-11-15  1.2.36 buildfile_1.2.36_for_3.0.zip
buildfile_1.2.36_for_3.0_src.zip
buildfile_1.2.36_for_2.1.zip
buildfile_1.2.36_for_2.1_src.zip
90  
 2004-11-01  1.0.0 buildfile_1.0.0_for_3.0.zip
buildfile_1.0.0_for_3.0_src.zip
buildfile_1.0.0_for_2.1.zip
buildfile_1.0.0_for_2.1_src.zip
80  
 2004-10-24  0.1.8 buildfile_0.1.8.zip 30  
  
三、Developers
 Bookman  Project design、develop、release

四、
New Feature
  1、more flexible for resigned framework
  2、support for more task
  3、support for more customization

五、Installation Guide
  1、find %Eclipse_Home%\plugins directory,locate sub-directory starts with
    org.vivianj.eclipse.plugin.buildfile
  2、if there has, delete it
  3、uncompress what you downloaded,copy plunins directory to home directory of eclipse
   installation

六、User Guide
   1、clik File->New->Other,open popup window of Winzard,select BuildFileDesigner Winzard->buildfile for ant to create a new build.xml
   2、then you can set default editor of build.xml to BuildFileDesigner,follow me:
     A)click Window->Preferences
     B)select Workbench->File Assosiations
     C)set default editor of build.xml to BuildFileDesigner
   3、update property of Project
      a)select project node of buildfile tree:
  
      b)update property of project on right panel
      c)click “update” button to save your change
   4、create a new Property
      a)select project node of buildfile tree:
  
      b)open the context popup menu
  
      c)click “增加新的属性(Property)”
      d)then you can see
    
      e)update property of project on right panel,click “update” button to save your change
   5、update Property
      a)click some "property" node
  
      b)update property of "property" node
      c)click “update” button to save your change
   6、delete Property
      a)click some "property" node
  
      b)click “delete” button to delete what you selected
   7、create a new Target
      a)select project node of buildfile tree
  
      b)open context menu
  
      c)单击“增加新的目标(Target)”单选按钮
      d)系统界面将变更为如下图所示:
    
      e)在右边的节点属性显示区修改相应属性,单击“保存”按钮保存所作修改
   8、Target的属性更新
      a)在buildfile树上选择Target节点,如下图所示:
  
      b)在右边的节点属性显示区修改相关属性
      c)单击“更新”按钮保存所作修改
   9、Target的删除
      a)在buildfile树上选择Target节点,如下图所示:
  
      b)单击“删除”按钮删除所选择目标
   10、新增加Task
      a)在buildfile树上选择Target节点,如下图所示:
  
      b)单击右键,系统弹出选择框
  
      c)单击“增加新的任务(javac)”单选按钮
      d)系统界面将变更为如下图所示:
    
      e)在右边的节点属性显示区修改相应属性,单击“保存”按钮保存所作修改
   11、Task的属性更新
      a)在buildfile树上选择Task节点,如下图所示:
  
      b)在右边的节点属性显示区修改相关属性
      c)单击“更新”按钮保存所作修改
   12、Task的删除
      a)在buildfile树上选择Task节点,如下图所示:
  
      b)单击“删除”按钮删除所选择Task

七、用户定制
  1、定制多国语言支持
    项目中的多国语言支持通过ResourceBundle实现,资源文件位于%Eclipse_Home%\plugins
    \org.vivianj.eclipse.plugin.buildfile_1.0.0\BuildFileDesigner.jar\org\vivianj\eclipse
    \plugin\buildfile\util目录下
    A) 如果需要修改其中的内容,请将resource.properties或者resouce_cn.properties文件解压缩
      出来,修改后再更新BuildFileDesigner.jar
    B) 如果需要新增加语言支持,请再该目录下增加resource_xx.properties文件,它的内容中关键
      词部分和resource.properties相同,内容部分请根据特殊语言修改
      
[注] xx是使用Locale.getDefault().getLanguage()获得的字符串
    
八、To Do
  1、数据有效性校验
  2、对更多任务的支持