Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f580bcfb5acaee8e4b0e67f584918ce37c99f1d9 (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
<?xml version="1.0" encoding="UTF-8" ?> 
<cheatsheet title="Test cheatsheet without cheatsheet element">

	<intro>
		<description>
Simple test
		</description>
</intro>

	<item
		title="Just a simple test">
		<description>
Did it work? Of course not, it is suppose to cause a parsing error.
		</description>
	<perform-when condition="${pattern}">
		<extra>testing</extra>
		<action
			when="Factory"
			pluginId="org.eclipse.ui.tests.cheatsheets"
			class="org.eclipse.ui.examples.cheatsheets.pattern.actions.FactoryCustomizeAction"/>
		<action
			when="Singleton"
			pluginId="org.eclipse.ui.tests.cheatsheets"
			class="org.eclipse.ui.examples.cheatsheets.pattern.actions.SingletonCustomizeAction"/>
		<action
			when="Visitor"
			pluginId="org.eclipse.ui.tests.cheatsheets"
			class="org.eclipse.ui.examples.cheatsheets.pattern.actions.VisitorCustomizeAction"/>
	</perform-when>
</item>

</cheatsheet>

Back to the top