`
yanghuidang
  • 浏览: 914185 次
  • 性别: Icon_minigender_1
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论

(精品技术文摘)UML Stub Code and ASDocs(使用UML进行AS3程序设计) by Derrick Grigg

阅读更多

UML, Stub Code and ASDocs

这篇文章主要介绍了如何使用EA(Enterprise Architect)来展开基于UML的ActionScript3程序设计。 比较出色的地方在于对于EA中与AS3语法不相符的地方进行了修改,使得其可以直接从UML生成完全可编译的AS3代码,着实牛叉!

I have recently started using Enterprise Architect (EA) for creating UML diagrams for Actionscript and Flex projects. This is an outstanding product that is reducing my development time and helping me to create self documenting code following AsDoc formatting rules. If you have never created a UML diagram or used UML software, the concept can seem a little overwhelming but let me assure you, your time spent learning how to do so will be time very well spent.

In it's simplest form UML software allows a person to visually layout and architect a project before ever doing any actual coding. You can create your classes, document the properties and functions you intend to use, organize them and relate them (for either implementing or extending). At this point you are probably wondering why you would want to do that when you could just fire up your IDE of choice and start coding. Before I started using Enterprise Architect I only had one really good reason, it makes you think through the solution and plan before you start coding, so you can attack the project with a well defined plan. Now I have another reason, that I think is just as important as the first, EA can generate all your UML'd classes in either AS2 or AS3 in ASDoc friendly format. All your stub code is generated in seconds, perfectly formatted and compilable. This is an absolutely huge time and effort saver. By using UML you can create a well structured plan for your project and using the code generation in EA allows you to export all that planning effort into perfectly formatted Actionscript. I have created a sample project to demonstrate just how nicely this solution works and hopefully show why you may want to consider this approach for your projects. I will walk you through how to create a simple UML diagram in EA, how to export the diagram into AS3 files, and how to run the AS3 code through ASDoc to create project documentation.

You can download all my source files for this sample here.

Step 1 - Configure EA for Actionscript projects

这一段主要介绍了如何对EA进行设定,可以更好的在其中展开基于UML的AS3程序设计。

Download the trial version of Enterprise Architect. Once you have it installed a few adustments need to be made. First, select the 'Tools/Options' menu and click the 'Source Code Engineering' node, set the 'Default Language for Code Generation' to 'Actionscript'. Click on the 'Actionscript' node and set the 'Default Version' to whichever AS version you are working in. Second, the templates that generate the AS code need some tweaks (just a few minor things that EA appears to have missed). You have two options, import the template updates I created or do it manually. To import my adjustements, download this file, unzip it, in EA, open the 'Tools' menu and select the 'Import Reference Data' item. Browse to the 'actionscript_code_templates.xml' file, select and open it, select the 'Actionscript_Code_Template' and click 'Import'. To do it manualy open the 'Settings' menu and select the 'Code Generation Templates' item and then make these two changes.

  • Select the 'Class' template, change the entire section to
    %ImportSection%\n
    %ClassNotes%
    %ClassDeclaration%
    %ClassBody%
    This puts the import statements after the package declaration but before the class declaration in the as files.
  • Select the 'Operation Declaration' template, find this block of code (near the top)
    %PI=" "%
    %opStatic == "T" ? "static"%
    %if genOptActionscriptVersion=="3.0" and opTag:"namespace"!=""%
    %opTag:"namespace"%
    %else%
    %CONVERT_SCOPE(opScope)%
    %endIf%
    and change it to this
    %PI=" "%
    %opStatic == "T" ? "static"%
    %if genOptActionscriptVersion=="3.0" and opTag:"namespace"!=""%
    %opTag:"namespace"%
    %elseIf elemType=="Interface"%
    %else%
    %CONVERT_SCOPE(opScope)%
    %endIf%
    This ensures that functions in Interfaces can not be declared Public, Private etc, which will throw a compiler error.

Step 2 - Create a UML diagram

这一段主要介绍了如何在EA中进行UML设计,这个,看帮助会更清楚些。

Open EA and create a new project. In the project browser you can setup your package structure. For this sample I will keep it really simple and add a few packages 'com.dgrigg.vo', 'com.dgrigg.view'. The next step is creating the diagram. You can drag Class and Interface (to name a few) elements onto the diagram to begin creating your class structure. As you add new elements, you are prompted to enter the class properties. Enter information in the 'Notes' field to explain what the class is for. A few things to note when you are creating elements.

  • As you create Classes, Interfaces etc. and add Operations and Attributes (functions and properties) to each, be sure to enter a description in the 'Notes' field, this will get exported in your code and also be used by ASDocs.
  • When you create a new class you must create a constructor for it in the Operators list, for some reason EA does not do this for Actionscript projects.
  • If you add an Operator that has return value, be sure to enter a return line in the 'Initial Code' field on the 'Behavior' tab. This will set a 'default' return value in the code and allow ASDoc to properly execute and also not throw any compiler errors.
  • If the element you are working with needs to import '.as' files, right click on the element in the 'Project Browser', select 'Generate Code' and enter your import statements in the second 'Import(s)/Header(s)' field, click the 'Save' button.

When you are all done your diagram it will look something like this.

Step 3 - Generate the AS file

In the Project Browser right click on the 'com' folder, or whatever you root package folder is, and select 'Code Engineering/Generate Source Code'. Set the path you want to export to, check the 'Include all Child Packages' options, and click the 'Generate' button. Below is a sample of a generated AS file, straight from EA with no editing.

///////////////////////////////////////////////////////////
//  ProductList.as
//  Macromedia ActionScript Implementation of the Class ProductList
//  Generated by Enterprise Architect
//  Created on:      14-Sep-2006 5:08:46 PM
//  Original author: Derrick Grigg
///////////////////////////////////////////////////////////

package com.dgrigg.view
{
	import com.dgrigg.vo.ProductVO;
	import flash.text.TextField;
	import mx.controls.DataGrid;
	import flash.events.Event;
	import com.dgrigg.vo.ProductVO;
	import com.dgrigg.view.IView;

	/**
	 * Displays a DataGrid of products, lets the user select and view a product.
	 * 
	 * @see com.dgrigg.vo.ProductVO
	 * @author Derrick Grigg
	 * @version 1.0
	 * @updated 14-Sep-2006 7:38:22 PM
	 */
	public class ProductList implements IView
	{
	    /**
	     * displays the list of products
	     */
	    private var products_dg: DataGrid;
	    /**
	     * display the selected product's name
	     */
	    private var name_txt: TextField;
	    /**
	     * display the selected products' description
	     */
	    private var description_txt: TextField;
	    /**
	     * display the selected product's sku
	     */
	    private var sku_txt: TextField;

	    /**
	     * Constructor
	     */
	    public function ProductList()
	    {
	    }

	    /**
	     * add a product to the displayed product list
	     * 
	     * @param product    product to add to the product list
	     */
	    public function addProduct(product:ProductVO): Boolean
	    {
	    	return true;
	    }

	    public function getSelectedProduct(): ProductVO
	    {
	    	return new ProductVO();
	    }

	    /**
	     * handle the event that is triggered when a user selected a row in the data grid
	     * 
	     * @param event    event dispatched from DataGrid
	     */
	    public function handleSelectedProduct(event:Event): void
	    {
	    }

	}//end ProductList

}

Step 4 - Generate the ASDoc files

自动生成语言文档技术,目前官方的方法已被集成进FLEX环境中,可我还没找到,汗~~~~

Download and install the ASDoc tool from Adobe. I have created a little bat file I use with ASDoc just to make is easier to recreate the files whenever I need to without having to remember my settings, you can download it here. Run ASDoc to create your files. Click here to see the final ASDocs files.

Conclusion

If you develop Actionscript projects of any size and/or complexity, and you need some documentation done along the way, the steps I have outlined above are any excellent way to quickly generate both the stub code you need to begin your development and some project documentation, which as we all know is a hassle to create but invaluable to have. Enjoy

-------------------------------------------------------------------

拜此文所赐,我也可以舒服的在EA中用UML来设计软件结构(改天和大家分享),进而直接生成代码了,不过,藉于EA的代码编辑器实在过于简单,个人的见议还是代码在FLEX中写,而框架、软件的设计在EA中进行。

Enterprise Architect可以在这里下载到:

http://www.topven.com/bbs/ShowPost.asp?ThreadID=181

分享到:
评论

相关推荐

    Star UML指导手册

    StarUML(简称SU),是一种创建UML类图,并能够自动生成Java的“stub code” 的工具。SU也可以做JAVA逆向工程,以产生相应的UML图表。 在本教程中,我们将使用SU设计一个pizza饼。执行下列步骤,可以创建如下面所示的...

    StarUML.rar_pizza_starUML使用教程_staruml_uml

    StarUML(简称SU),是一种创建UML类图,并能够自动生成Java的“stub code” 的工具。SU也可以做JAVA逆向工程,以产生相应的UML图表。 在本教程中,我们将使用SU设计一个pizza饼。执行下列步骤,可以创建如下面所示的...

    cpp-stub 中文使用手册

    单元测试打桩开源库 cpp-stub 使用手册 中文版本,这是从git上直接下载的,git上下载的源代码在arm上调用Stub.reset方法会引发段错误,在资源cpp-stub开源代码(下载地址:...

    使用axis1生成stub客户端样例

    主要包含了使用Axis1生成stub客户端的样例。

    gtest stub 详细用法,附件用例,链接

    gtest stub 详细用法,附件用例,链接

    Microsoft Codeview and Utilities User's Guide

    11.10.3 Redirecting CodeView Input and Output 11.10.4 Commands Used with Redirection Chapter 12 Debugging in Protected Mode 12.1 Using CodeView in Different Modes 12.2 Debugging Dynamic-Link ...

    cpp-stub 开源代码

    这是一个单元测试打桩开源代码,在git上下载的代码在ARM平台上有一个BUG,使用stub.h中的reset方法时,会引起段错误,该资源对这个bug进行了修复。

    精通StarUML.doc

    StarUML(简 称SU),是一种创建UML类图,并能够自动生成Java的“stub code” 的工具。SU也可以做JAVA逆向工程,以产生相应的UML图 表。 在本教程 中,我们将使用SU设计一个pizza饼。执行下列步骤,可以创建如下面所示...

    corba技术简介 IDL Stub

    主要讲述了Corba组件的关键技术。对IDL编译器以及客户Stub和服务器skeleton有更深入的了解。

    Mockito Essentials(PACKT,2014)

    Whether you are new to JUnit testing and mocking or a seasoned Mockito expert, this book will provide you with the skills you need to successfully build and maintain meaningful JUnit test cases and ...

    grpc-stub-1.24.0-API文档-中文版.zip

    赠送jar包:grpc-stub-1.24.0.jar; 赠送原API文档:grpc-stub-1.24.0-javadoc.jar; 赠送源代码:grpc-stub-1.24.0-sources.jar; 赠送Maven依赖信息文件:grpc-stub-1.24.0.pom; 包含翻译后的API文档:grpc-stub-...

    Java程序设计基础:模块化程序设计思想.pptx

    模块化程序 设计思想 目录 课程导入 理解模块化程序设计思想概念 了解”自顶向下、逐步求精“设计方法 sum = 10!+6!-9! 引入示例 引入示例 10! 将10!加到sum中 6! 将6!加到sum中 9! 从sum中减去9! 缺点:代码重复...

    com.stub.StubApp.apk

    com.stub.StubApp.apk

    Android应用:StubView显示与隐藏

    Android源代码 启动时隐藏StubView,点击Show按钮显示StubView,点击Hide隐藏StubView.

    [PE变形]拓展STUB

    用于演示PE变形拓展STUB的蓝本程序。

    1037571306982519com.stub.StubApp.apk

    1037571306982519com.stub.StubApp.apk

    Firefox Setup Stub 23.0.1

    Firefox Setup Stub 23.0.1

    com.stub.StubApp.apk.1

    com.stub.StubApp.apk.1

    Axis使用Stub方式开发Webservice只要看这个

    Axis使用Stub方式开发Webservice只要看这个,十分钟包你学会!!!

Global site tag (gtag.js) - Google Analytics