1.Use meta thing create descriptor

2.The editor UI of Person

Pictured above is a Person editing interface, the Edit interface is dynamically generated with MetaDescriptor3.

Pictured above, MetaDescriptor3 defiend thing, action and attribute. Can define a Person's attributes, and behaviors.
<?xml version="1.0" encoding="utf-8"?>
<thing name="Person" descriptors="xworker.lang.MetaDescriptor3">
<description><![CDATA[<h3>元事物的作用</h3>
<p> 元事物用于定义一个事物的属性(attribute)和子事物(thing),
所以可以看到Person有多个名为属性(attribute)和事物(thing)的子节点,而这些子节点就是其实例的属性和子事物的定义。</p>]]></description>
<attribute name="name"></attribute>
<attribute name="label"></attribute>
<attribute name="age"></attribute>
<attribute name="sex" inputtype="select">
<value name="1" label="男" value="1" en_label="Male"></value>
<value name="2" label="女" value="2" en_label="Female"></value>
</attribute>
<attribute name="description" inputtype="html"></attribute>
<thing name="Child" extends="xworker.example.thing.creatething.Person"></thing>
</thing>