|
1 <?xml version="1.0" encoding="UTF-8"?> |
|
2 <!-- Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). --> |
|
3 <!-- All rights reserved. --> |
|
4 <!-- This component and the accompanying materials are made available --> |
|
5 <!-- under the terms of the License "Eclipse Public License v1.0" --> |
|
6 <!-- which accompanies this distribution, and is available --> |
|
7 <!-- at the URL "http://www.eclipse.org/legal/epl-v10.html". --> |
|
8 <componentDefinition xmlns="http://www.nokia.com/sdt/emf/component" |
|
9 xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" |
|
10 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
|
11 <compoundPropertyDeclaration qualifiedName="com.nokia.test.array.foo"> |
|
12 <property name="f1" type="integer"/> |
|
13 <property name="f2" type="boolean"/> |
|
14 </compoundPropertyDeclaration> |
|
15 <compoundPropertyDeclaration qualifiedName="com.nokia.test.compoundWithArray"> |
|
16 <arrayProperty name="a" type="string"/> |
|
17 <arrayProperty name="b" type="com.nokia.test.array.foo"/> |
|
18 </compoundPropertyDeclaration> |
|
19 |
|
20 <component |
|
21 friendlyName="List" qualifiedName="com.nokia.test.arrayTest" |
|
22 category="Basic" version="1.0"> |
|
23 <properties> |
|
24 <property name="name" type="string" /> |
|
25 <arrayProperty name="ints" type="integer"/> |
|
26 <arrayProperty name="strs" type="string"/> |
|
27 <arrayProperty name="foos" type="com.nokia.test.array.foo"/> |
|
28 <compoundProperty name="nested" type="com.nokia.test.compoundWithArray"/> |
|
29 </properties> |
|
30 </component> |
|
31 </componentDefinition> |