Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/widgets/test/ClientTestFragment.java')
-rw-r--r--core/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/widgets/test/ClientTestFragment.java85
1 files changed, 85 insertions, 0 deletions
diff --git a/core/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/widgets/test/ClientTestFragment.java b/core/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/widgets/test/ClientTestFragment.java
new file mode 100644
index 000000000..08638af05
--- /dev/null
+++ b/core/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/widgets/test/ClientTestFragment.java
@@ -0,0 +1,85 @@
+/*******************************************************************************
+ * Copyright (c) 2004, 2007 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
+ * yyyymmdd bug Email and other contact information
+ * -------- -------- -----------------------------------------------------------
+ * 20060727 144354 kathy@ca.ibm.com - Kathy Chan
+ * 20070502 180304 gilberta@ca.ibm.com - Gilbert Andrews
+ *******************************************************************************/
+/**
+ */
+package org.eclipse.jst.ws.internal.consumption.ui.widgets.test;
+
+import org.eclipse.wst.command.internal.env.core.common.Condition;
+import org.eclipse.wst.command.internal.env.core.fragment.BooleanFragment;
+import org.eclipse.wst.command.internal.env.core.fragment.SequenceFragment;
+import org.eclipse.wst.command.internal.env.core.fragment.SimpleFragment;
+
+
+public class ClientTestFragment extends BooleanFragment
+{
+ private boolean testService;
+ private boolean genProxy; // This actually represent whether client test is requested
+ private boolean launchedTest = false;
+ private boolean canGenProxy;
+
+ public ClientTestFragment( String id )
+ {
+ SequenceFragment clientTestRoot = new SequenceFragment();
+ Condition condition = new Condition()
+ {
+ public boolean evaluate()
+ {
+ return testService && genProxy;
+ }
+ };
+ setCondition( condition );
+
+
+ Condition jspCondition = new Condition()
+ {
+ public boolean evaluate()
+ {
+ return canGenProxy;
+ }
+ };
+
+ SimpleFragment simpleJSPFragment = new SimpleFragment( new WebServiceClientTestArrivalCommand(), "" );
+ BooleanFragment choiceJSPFragment = new BooleanFragment();
+ choiceJSPFragment.setTrueFragment(simpleJSPFragment);
+ choiceJSPFragment.setCondition(jspCondition);
+ clientTestRoot.add(choiceJSPFragment);
+
+ clientTestRoot.add( new SimpleFragment( id ) );
+ setTrueFragment( clientTestRoot );
+
+ }
+
+ public void setGenerateProxy( boolean genProxy )
+ {
+ this.genProxy = genProxy;
+ }
+
+ public void setCanGenerateProxy( boolean canGenProxy )
+ {
+ this.canGenProxy = canGenProxy;
+ }
+
+ public void setTestService( Boolean testService )
+ {
+ this.testService = testService.booleanValue();
+ }
+
+
+
+ public boolean getLaunchedTest()
+ {
+ return launchedTest;
+ }
+}

Back to the top