Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 338461037952872d3e5e3d561ac666e8eb8e5b65 (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
<?xml version="1.0" encoding="UTF-8"?>
<Composite xmlns:ppe="clr-namespace:org.eclipse.papyrus.infra.properties.ui.widgets"
	xmlns="http://www.eclipse.org/xwt/presentation"
	xmlns:ppel="clr-namespace:org.eclipse.papyrus.infra.properties.ui.widgets.layout"
	xmlns:x="http://www.eclipse.org/xwt">
	<Composite.layout>
		<ppel:PropertiesLayout></ppel:PropertiesLayout>
	</Composite.layout>
	<Composite>
		<Composite.layout>
			<ppel:PropertiesLayout numColumns="2"></ppel:PropertiesLayout>
		</Composite.layout>
		<ppe:StringLabel input="{Binding}"
			property="ProfileDefinitionAnnotation:PapyrusVersion:Version"
			readOnly="true"></ppe:StringLabel>
		<ppe:StringLabel input="{Binding}"
			property="ProfileDefinitionAnnotation:PapyrusVersion:Date" readOnly="true"></ppe:StringLabel>
		<ppe:StringLabel input="{Binding}"
			property="ProfileDefinitionAnnotation:PapyrusVersion:Author"
			readOnly="true"></ppe:StringLabel>
	</Composite>
	<Composite>
		<Composite.layout>
			<ppel:PropertiesLayout numColumns="2"></ppel:PropertiesLayout>
		</Composite.layout>
		<ppe:StringMultiline input="{Binding}"
			property="ProfileDefinitionAnnotation:PapyrusVersion:Copyright"
			readOnly="true"></ppe:StringMultiline>
		<ppe:StringMultiline input="{Binding}"
			property="ProfileDefinitionAnnotation:PapyrusVersion:Comment"
			readOnly="true"></ppe:StringMultiline>
	</Composite>
</Composite>

Back to the top