Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1d6f7d971bc8531b9052ba2026ff909df2a3218a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="UTF-8"?>
<Composite
	xmlns:ppel="clr-namespace:org.eclipse.papyrus.infra.properties.ui.widgets.layout"
	xmlns="http://www.eclipse.org/xwt/presentation" xmlns:j="clr-namespace:java.lang"
	xmlns:x="http://www.eclipse.org/xwt" xmlns:ppe="clr-namespace:org.eclipse.papyrus.infra.properties.ui.widgets">
	<Composite.layout>
		<ppel:PropertiesLayout></ppel:PropertiesLayout>
	</Composite.layout>
	<Composite>
		<Composite.layout>
			<ppel:PropertiesLayout numColumns="1"></ppel:PropertiesLayout>
		</Composite.layout>
		<ppe:StringEditor input="{Binding}"
			property="EObjectInTable:TableNamedElement:name"></ppe:StringEditor>
		<ppe:StringEditor input="{Binding}"
			property="EObjectInTable:TableNamedElement:label"></ppe:StringEditor>
	</Composite>
	<Composite>
		<Composite.layout>
			<ppel:PropertiesLayout numColumns="2"></ppel:PropertiesLayout>
		</Composite.layout>
		<ppe:ReferenceLabel input="{Binding}"
			property="EObjectInTable:Table:prototype" readOnly="true"
			customLabel="Table Kind"></ppe:ReferenceLabel>
		<ppe:ReferenceDialog input="{Binding}"
			property="EObjectInTable:Table:owner" customLabel="Owner"></ppe:ReferenceDialog>
		<ppe:ReferenceLabel input="{Binding}"
			property="EObjectInTable:Table:context" customLabel="Root element"></ppe:ReferenceLabel>
	</Composite>
	<Composite>
		<Composite.layout>
			<ppel:PropertiesLayout numColumns="1"></ppel:PropertiesLayout>
		</Composite.layout>
		<ppe:StringMultiline input="{Binding}"
			property="EObjectInTable:TableNamedElement:description" customLabel="Description"></ppe:StringMultiline>
	</Composite>
</Composite>

Back to the top