Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarvin Mueller2013-11-05 07:21:43 +0000
committerMarvin Mueller2013-11-05 07:21:43 +0000
commit0f5c0ce25eb222f529e906488c4a3c4bc14f8340 (patch)
tree6a16eb654d0de78972b05d970921517c760adec9
parent9c5b98db2a85b66c253f6fc3d014bcb1bccba216 (diff)
downloadorg.eclipse.jubula.core-0f5c0ce25eb222f529e906488c4a3c4bc14f8340.tar.gz
org.eclipse.jubula.core-0f5c0ce25eb222f529e906488c4a3c4bc14f8340.tar.xz
org.eclipse.jubula.core-0f5c0ce25eb222f529e906488c4a3c4bc14f8340.zip
Sprint task - Apply contribution for F3 Open Specification usable for test suites and test jobs http://bugs.eclipse.org/418298
-rw-r--r--org.eclipse.jubula.client.ui.rcp/plugin.xml60
1 files changed, 60 insertions, 0 deletions
diff --git a/org.eclipse.jubula.client.ui.rcp/plugin.xml b/org.eclipse.jubula.client.ui.rcp/plugin.xml
index efd5b5d79..c879d816b 100644
--- a/org.eclipse.jubula.client.ui.rcp/plugin.xml
+++ b/org.eclipse.jubula.client.ui.rcp/plugin.xml
@@ -3540,6 +3540,66 @@
</activeWhen>
</handler>
<handler
+ class="org.eclipse.jubula.client.ui.rcp.handlers.open.OpenTestCaseEditorHandler"
+ commandId="org.eclipse.jubula.client.ui.commands.OpenSpecification">
+ <activeWhen>
+ <and>
+ <with variable="activePartId">
+ <equals value="org.eclipse.jubula.client.ui.rcp.views.TestCaseBrowser" />
+ </with>
+ <iterate
+ ifEmpty="false"
+ operator="and">
+ <or>
+ <instanceof
+ value="org.eclipse.jubula.client.core.model.ISpecTestCasePO">
+ </instanceof>
+ </or>
+ </iterate>
+ </and>
+ </activeWhen>
+ </handler>
+ <handler
+ class="org.eclipse.jubula.client.ui.rcp.handlers.open.OpenTestSuiteEditorHandler"
+ commandId="org.eclipse.jubula.client.ui.commands.OpenSpecification">
+ <activeWhen>
+ <and>
+ <with variable="activePartId">
+ <equals value="org.eclipse.jubula.client.ui.rcp.views.TestSuiteBrowser" />
+ </with>
+ <iterate
+ ifEmpty="false"
+ operator="and">
+ <or>
+ <instanceof
+ value="org.eclipse.jubula.client.core.model.ITestSuitePO">
+ </instanceof>
+ </or>
+ </iterate>
+ </and>
+ </activeWhen>
+ </handler>
+ <handler
+ class="org.eclipse.jubula.client.ui.rcp.handlers.open.OpenTestJobEditorHandler"
+ commandId="org.eclipse.jubula.client.ui.commands.OpenSpecification">
+ <activeWhen>
+ <and>
+ <with variable="activePartId">
+ <equals value="org.eclipse.jubula.client.ui.rcp.views.TestSuiteBrowser" />
+ </with>
+ <iterate
+ ifEmpty="false"
+ operator="and">
+ <or>
+ <instanceof
+ value="org.eclipse.jubula.client.core.model.ITestJobPO">
+ </instanceof>
+ </or>
+ </iterate>
+ </and>
+ </activeWhen>
+ </handler>
+ <handler
class="org.eclipse.jubula.client.ui.rcp.handlers.ShowSpecificationHandlerRefTS"
commandId="org.eclipse.jubula.client.ui.commands.ShowSpecification">
<activeWhen>

Back to the top