Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDejan Gloszic2006-01-05 00:11:41 +0000
committerDejan Gloszic2006-01-05 00:11:41 +0000
commitf19e9f7a2623eacc1ce71d2b28ed69e394e45fc2 (patch)
tree4e42437d98fd1ce9d14374178714574ef3a5ffc2 /org.eclipse.ua.tests/data/cheatsheet/valid/tolerate/ConditionalSubItem_ExtraElement.xml
parentbfda4e065254d5b116b524c247bbee0b76351d56 (diff)
downloadeclipse.platform.ua-f19e9f7a2623eacc1ce71d2b28ed69e394e45fc2.tar.gz
eclipse.platform.ua-f19e9f7a2623eacc1ce71d2b28ed69e394e45fc2.tar.xz
eclipse.platform.ua-f19e9f7a2623eacc1ce71d2b28ed69e394e45fc2.zip
*** empty log message ***
Diffstat (limited to 'org.eclipse.ua.tests/data/cheatsheet/valid/tolerate/ConditionalSubItem_ExtraElement.xml')
-rw-r--r--org.eclipse.ua.tests/data/cheatsheet/valid/tolerate/ConditionalSubItem_ExtraElement.xml47
1 files changed, 47 insertions, 0 deletions
diff --git a/org.eclipse.ua.tests/data/cheatsheet/valid/tolerate/ConditionalSubItem_ExtraElement.xml b/org.eclipse.ua.tests/data/cheatsheet/valid/tolerate/ConditionalSubItem_ExtraElement.xml
new file mode 100644
index 000000000..b1b7c2d15
--- /dev/null
+++ b/org.eclipse.ua.tests/data/cheatsheet/valid/tolerate/ConditionalSubItem_ExtraElement.xml
@@ -0,0 +1,47 @@
+<?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>
+ <conditional-subitem condition="${pattern}">
+ <extra>testing</extra>
+ <subitem
+ when="Factory"
+ label="Customize the Factory Pattern"
+ skip="true">
+ <action
+ confirm="true"
+ pluginId="org.eclipse.ua.tests"
+ class="org.eclipse.ui.examples.cheatsheets.pattern.actions.FactoryCustomizeAction"/>
+ </subitem>
+ <subitem
+ when="Singleton"
+ label="Customize the Singleton Pattern"
+ skip="false">
+ <action
+ confirm="true"
+ pluginId="org.eclipse.ua.tests"
+ class="org.eclipse.ui.examples.cheatsheets.pattern.actions.SingletonCustomizeAction"/>
+ </subitem>
+ <subitem
+ when="Visitor"
+ label="Customize the Visitor Pattern"
+ skip="true">
+ <action
+ confirm="false"
+ pluginId="org.eclipse.ua.tests"
+ class="org.eclipse.ui.examples.cheatsheets.pattern.actions.VisitorCustomizeAction"/>
+ </subitem>
+ </conditional-subitem>
+</item>
+
+</cheatsheet>

Back to the top