Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e2b9dec5fb245e946ada8ebbe7d50da6e954abbf (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
<?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:x="http://www.eclipse.org/xwt"
	xmlns:ppel="clr-namespace:org.eclipse.papyrus.infra.properties.ui.widgets.layout">
	<Composite.layout>
		<ppel:PropertiesLayout></ppel:PropertiesLayout>
	</Composite.layout>
	<Group text="Paste Row Axis">
		<Group.layout>
			<ppel:PropertiesLayout numColumns="3"
				makeColumnsEqualWidth="true"></ppel:PropertiesLayout>
		</Group.layout>
		<ppe:BooleanCheckbox input="{Binding}"
			property="EObjectInTable:Table:localRowHeaderAxisConfiguration.detachedMode"
			customLabel="Detached Mode"></ppe:BooleanCheckbox>
		<ppe:StringCombo input="{Binding}"
			property="EObjectInTable:Table:localRowHeaderAxisConfiguration.pastedEObjectId"
			customLabel="Pasted Element Id"></ppe:StringCombo>
		<ppe:ReferenceDialog input="{Binding}"
			property="EObjectInTable:Table:localRowHeaderAxisConfiguration.pastedEObjectContainmentFeature"
			customLabel="Containment Feature"></ppe:ReferenceDialog>
		<ppe:MultiReference input="{Binding}"
			property="EObjectInTable:Table:localRowHeaderAxisConfiguration.postActions"
			customLabel="Post Actions"></ppe:MultiReference>
		<ppe:ReferenceDialog input="{Binding}"
			property="EObjectInTable:Table:localRowHeaderAxisConfiguration.axisIdentifier"
			customLabel="Axis used as identifier"></ppe:ReferenceDialog>
	</Group>
</Composite>

Back to the top