Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b36008a362d03255c9fb0abb18e66d6d7a2f7e00 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="UTF-8"?>
<!--
     Copyright (c) 2005, 2008 IBM Corporation and others.
     All rights reserved. This program and the accompanying materials
     are made available under the terms of the Eclipse Public License v1.0
     which accompanies this distribution, and is available at
     http://www.eclipse.org/legal/epl-v10.html
    
     Contributors:
         IBM Corporation - initial API and implementation
 -->

<cheatsheet title="Test commands in subitems">
  <intro>
    <description>A cheat sheet which demonstrates the use of perform-when and conditional subitems
    <br/><br/>Verify that each step performs as indicated in the description, that the description 
    for each step is visible and that all steps can be completed.
    </description>
  </intro>
  <item title="Select which view to open">
     <description>Select a view which will be opened in the following steps. Pick either, they work
     equally well.</description>
     <command returns = "result"
      serialization="org.eclipse.ui.dialogs.openMessageDialog(title=Select View,buttonLabel0=Package Explorer,message=Select a view ,buttonLabel1=Search View)"/>  
      <onCompletion> Selected the ${result}. </onCompletion>
  </item> 
  <item title="Close Views">
     <description>Close the search view and package explorer if open</description>
  </item>
  <item title="Open the view from a perform when item." skip = "true">
     <description>Uses perform when to open the view seleted previously.</description> 
     <perform-when condition = "${result}">
           <command when = "Package Explorer" 
            serialization="org.eclipse.ui.views.showView(org.eclipse.ui.views.showView.viewId=org.eclipse.jdt.ui.PackageExplorer)"/>
           <command when = "Search View" 
            serialization="org.eclipse.ui.views.showView(org.eclipse.ui.views.showView.viewId=org.eclipse.search.ui.views.SearchView)"/>      
     </perform-when>
  </item> 
  <item title="Close Views">
     <description>First verify that the view you selected was opened. 
     Close the Search View/Package explorer, whichever is open.</description>
  </item>
  <item title="Open the view from a perform when subitem. ">
     <description>Uses perform when to open the view seleted previously. </description> 
     <subitem label="Perform when subitem" skip = "true">
     <perform-when condition = "${result}">
           <command when = "Package Explorer"      
            serialization="org.eclipse.ui.views.showView(org.eclipse.ui.views.showView.viewId=org.eclipse.jdt.ui.PackageExplorer)"/>
           <command when = "Search View" 
            serialization="org.eclipse.ui.views.showView(org.eclipse.ui.views.showView.viewId=org.eclipse.search.ui.views.SearchView)"/>      
     </perform-when>
     </subitem>
  </item> 
   <item title="Close Views">
     <description>First verify that the view you selected was opened. 
     Close the Search View/Package explorer, whichever is open.</description>
  </item>
  <item title="Open the view from a conditional subitem">
     <description>Uses perform when to open the view seleted previously.</description> 
      <conditional-subitem condition="${result}">
         <subitem when="Package Explorer" label="Open package explorer."> 
            <command serialization="org.eclipse.ui.views.showView(org.eclipse.ui.views.showView.viewId=org.eclipse.jdt.ui.PackageExplorer)"/>
         </subitem>
         <subitem when="Search View" label="Open Search View">
             <command serialization = "org.eclipse.ui.views.showView(org.eclipse.ui.views.showView.viewId=org.eclipse.search.ui.views.SearchView)"/>
         </subitem>
     </conditional-subitem>
  </item>  
   <item title="Close Views">
     <description>First verify that the view you selected was opened. 
     Close the Search View/Package explorer, whichever is open.</description>
  </item>
   <item title="Open both views from a repeated-subitem">
     <description>Uses repeated-subitem to open the view seleted previously.</description> 
      <repeated-subitem values="org.eclipse.jdt.ui.PackageExplorer,org.eclipse.search.ui.views.SearchView">
		<subitem label="Show ${this}">
           <command serialization="org.eclipse.ui.views.showView(org.eclipse.ui.views.showView.viewId=${this})"/>      
		</subitem>
	 </repeated-subitem>    
  </item>  
  <item title="Final checks">
     <description>Verify that both the package explorer and search view are open.<br/>
     Verify that every item except this one has a checkmark to the left of the title.</description>
  </item>
</cheatsheet>

Back to the top