Repository: incubator-taverna-engine Updated Branches: refs/heads/master 50373179a -> 7a011350d
javadoc: fix package name to org.apache.taverna Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-engine/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-engine/commit/0e467b79 Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-engine/tree/0e467b79 Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-engine/diff/0e467b79 Branch: refs/heads/master Commit: 0e467b7955efd665877b8726bedb35eb068bbadb Parents: 5037317 Author: Stian Soiland-Reyes <[email protected]> Authored: Sun Oct 18 19:15:45 2015 +0100 Committer: Stian Soiland-Reyes <[email protected]> Committed: Sun Oct 18 19:17:08 2015 +0100 ---------------------------------------------------------------------- .../execution/api/AbstractExecutionTest.java | 10 +++--- .../impl/local/LocalExecutionTest.java | 12 +++---- .../platform/report/StatusReportTest.java | 38 ++++++++++---------- .../platform/run/api/RunProfileTest.java | 18 +++++----- 4 files changed, 39 insertions(+), 39 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-taverna-engine/blob/0e467b79/taverna-execution-api/src/test/java/org/apache/taverna/platform/execution/api/AbstractExecutionTest.java ---------------------------------------------------------------------- diff --git a/taverna-execution-api/src/test/java/org/apache/taverna/platform/execution/api/AbstractExecutionTest.java b/taverna-execution-api/src/test/java/org/apache/taverna/platform/execution/api/AbstractExecutionTest.java index 95a5bca..12ab94a 100644 --- a/taverna-execution-api/src/test/java/org/apache/taverna/platform/execution/api/AbstractExecutionTest.java +++ b/taverna-execution-api/src/test/java/org/apache/taverna/platform/execution/api/AbstractExecutionTest.java @@ -85,7 +85,7 @@ public class AbstractExecutionTest { } /** - * Test method for {@link uk.org.taverna.platform.execution.api.AbstractExecution#getID()}. + * Test method for {@link org.apache.taverna.platform.execution.api.AbstractExecution#getID()}. */ @Test public void testGetID() { @@ -94,7 +94,7 @@ public class AbstractExecutionTest { } /** - * Test method for {@link uk.org.taverna.platform.execution.api.AbstractExecution#getWorkflowBundle()}. + * Test method for {@link org.apache.taverna.platform.execution.api.AbstractExecution#getWorkflowBundle()}. */ @Test public void testGetWorkflowBundle() { @@ -102,7 +102,7 @@ public class AbstractExecutionTest { } /** - * Test method for {@link uk.org.taverna.platform.execution.api.AbstractExecution#getWorkflow()}. + * Test method for {@link org.apache.taverna.platform.execution.api.AbstractExecution#getWorkflow()}. */ @Test public void testGetWorkflow() { @@ -110,7 +110,7 @@ public class AbstractExecutionTest { } /** - * Test method for {@link uk.org.taverna.platform.execution.api.AbstractExecution#getInputs()}. + * Test method for {@link org.apache.taverna.platform.execution.api.AbstractExecution#getInputs()}. */ @Test public void testGetInputs() { @@ -118,7 +118,7 @@ public class AbstractExecutionTest { } /** - * Test method for {@link uk.org.taverna.platform.execution.api.AbstractExecution#getWorkflowReport()}. + * Test method for {@link org.apache.taverna.platform.execution.api.AbstractExecution#getWorkflowReport()}. */ @Test public void testGetWorkflowReport() { http://git-wip-us.apache.org/repos/asf/incubator-taverna-engine/blob/0e467b79/taverna-execution-local/src/test/java/org/apache/taverna/platform/execution/impl/local/LocalExecutionTest.java ---------------------------------------------------------------------- diff --git a/taverna-execution-local/src/test/java/org/apache/taverna/platform/execution/impl/local/LocalExecutionTest.java b/taverna-execution-local/src/test/java/org/apache/taverna/platform/execution/impl/local/LocalExecutionTest.java index 207847d..98c91d0 100644 --- a/taverna-execution-local/src/test/java/org/apache/taverna/platform/execution/impl/local/LocalExecutionTest.java +++ b/taverna-execution-local/src/test/java/org/apache/taverna/platform/execution/impl/local/LocalExecutionTest.java @@ -33,7 +33,7 @@ import org.apache.taverna.platform.report.WorkflowReport; public class LocalExecutionTest { /** - * Test method for {@link uk.org.taverna.platform.execution.impl.local.LocalExecution#start()}. + * Test method for {@link org.apache.taverna.platform.execution.impl.local.LocalExecution#start()}. */ @Test @Ignore @@ -42,7 +42,7 @@ public class LocalExecutionTest { } /** - * Test method for {@link uk.org.taverna.platform.execution.impl.local.LocalExecution#pause()}. + * Test method for {@link org.apache.taverna.platform.execution.impl.local.LocalExecution#pause()}. */ @Test @Ignore @@ -51,7 +51,7 @@ public class LocalExecutionTest { } /** - * Test method for {@link uk.org.taverna.platform.execution.impl.local.LocalExecution#resume()}. + * Test method for {@link org.apache.taverna.platform.execution.impl.local.LocalExecution#resume()}. */ @Test @Ignore @@ -60,7 +60,7 @@ public class LocalExecutionTest { } /** - * Test method for {@link uk.org.taverna.platform.execution.impl.local.LocalExecution#cancel()}. + * Test method for {@link org.apache.taverna.platform.execution.impl.local.LocalExecution#cancel()}. */ @Test @Ignore @@ -70,7 +70,7 @@ public class LocalExecutionTest { /** * Test method for - * {@link uk.org.taverna.platform.execution.impl.local.LocalExecution#DataflowExecution(org.apache.taverna.scufl2.api.core.Workflow, java.util.Map, net.sf.taverna.t2.reference.ReferenceService)} + * {@link org.apache.taverna.platform.execution.impl.local.LocalExecution#DataflowExecution(org.apache.taverna.scufl2.api.core.Workflow, java.util.Map, net.sf.taverna.t2.reference.ReferenceService)} * . * * @throws Exception @@ -154,7 +154,7 @@ public class LocalExecutionTest { /** * Test method for - * {@link uk.org.taverna.platform.execution.impl.local.LocalExecution#resultTokenProduced(net.sf.taverna.t2.invocation.WorkflowDataToken, java.lang.String)} + * {@link org.apache.taverna.platform.execution.impl.local.LocalExecution#resultTokenProduced(net.sf.taverna.t2.invocation.WorkflowDataToken, java.lang.String)} * . */ @Test http://git-wip-us.apache.org/repos/asf/incubator-taverna-engine/blob/0e467b79/taverna-report-api/src/test/java/org/apache/taverna/platform/report/StatusReportTest.java ---------------------------------------------------------------------- diff --git a/taverna-report-api/src/test/java/org/apache/taverna/platform/report/StatusReportTest.java b/taverna-report-api/src/test/java/org/apache/taverna/platform/report/StatusReportTest.java index 115104e..ac496ee 100644 --- a/taverna-report-api/src/test/java/org/apache/taverna/platform/report/StatusReportTest.java +++ b/taverna-report-api/src/test/java/org/apache/taverna/platform/report/StatusReportTest.java @@ -52,7 +52,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#StatusReport()}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#StatusReport()}. */ @Test public void testStatusReport() { @@ -72,7 +72,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#getSubject()}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#getSubject()}. */ @Test public void testGetSubject() { @@ -82,7 +82,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#getState()}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#getState()}. */ @Test public void testGetState() { @@ -91,7 +91,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#getCreatedDate()}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#getCreatedDate()}. */ @Test public void testGetCreatedDate() { @@ -101,7 +101,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#setCreatedDate(java.util.Date)}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#setCreatedDate(java.util.Date)}. */ @Test public void testSetCreatedDate() { @@ -112,7 +112,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#getStartedDate()}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#getStartedDate()}. */ @Test public void testGetStartedDate() { @@ -120,7 +120,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#setStartedDate(java.util.Date)}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#setStartedDate(java.util.Date)}. */ @Test public void testSetStartedDate() { @@ -131,7 +131,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#getPausedDate()}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#getPausedDate()}. */ @Test public void testGetPausedDate() { @@ -139,7 +139,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#setPausedDate(java.util.Date)}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#setPausedDate(java.util.Date)}. */ @Test public void testSetPausedDate() { @@ -150,7 +150,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#getResumedDate()}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#getResumedDate()}. */ @Test public void testGetResumedDate() { @@ -158,7 +158,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#setResumedDate(java.util.Date)}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#setResumedDate(java.util.Date)}. */ @Test public void testSetResumedDate() { @@ -169,7 +169,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#getCancelledDate()}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#getCancelledDate()}. */ @Test public void testGetCancelledDate() { @@ -177,7 +177,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#setCancelledDate(java.util.Date)}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#setCancelledDate(java.util.Date)}. */ @Test public void testSetCancelledDate() { @@ -188,7 +188,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#getCompletedDate()}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#getCompletedDate()}. */ @Test public void testGetCompletedDate() { @@ -196,7 +196,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#setCompletedDate(java.util.Date)}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#setCompletedDate(java.util.Date)}. */ @Test public void testSetCompletedDate() { @@ -207,7 +207,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#getFailedDate()}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#getFailedDate()}. */ @Test public void testGetFailedDate() { @@ -215,7 +215,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#setFailedDate(java.util.Date)}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#setFailedDate(java.util.Date)}. */ @Test public void testSetFailedDate() { @@ -226,7 +226,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#getPausedDates()}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#getPausedDates()}. */ @Test public void testGetPausedDates() { @@ -234,7 +234,7 @@ public class StatusReportTest { } /** - * Test method for {@link uk.org.taverna.platform.report.StatusReport#getResumedDates()}. + * Test method for {@link org.apache.taverna.platform.report.StatusReport#getResumedDates()}. */ @Test public void testGetResumedDates() { http://git-wip-us.apache.org/repos/asf/incubator-taverna-engine/blob/0e467b79/taverna-run-api/src/test/java/org/apache/taverna/platform/run/api/RunProfileTest.java ---------------------------------------------------------------------- diff --git a/taverna-run-api/src/test/java/org/apache/taverna/platform/run/api/RunProfileTest.java b/taverna-run-api/src/test/java/org/apache/taverna/platform/run/api/RunProfileTest.java index 4144eb6..8c91ebb 100644 --- a/taverna-run-api/src/test/java/org/apache/taverna/platform/run/api/RunProfileTest.java +++ b/taverna-run-api/src/test/java/org/apache/taverna/platform/run/api/RunProfileTest.java @@ -73,7 +73,7 @@ public class RunProfileTest { /** * Test method for - * {@link uk.org.taverna.platform.run.api.RunProfile#RunProfile(org.apache.taverna.scufl2.api.container.WorkflowBundle, java.util.Map, org.apache.taverna.reference.ReferenceService, org.apache.taverna.platform.execution.api.ExecutionService)} + * {@link org.apache.taverna.platform.run.api.RunProfile#RunProfile(org.apache.taverna.scufl2.api.container.WorkflowBundle, java.util.Map, org.apache.taverna.reference.ReferenceService, org.apache.taverna.platform.execution.api.ExecutionService)} * . */ @Test @@ -117,7 +117,7 @@ public class RunProfileTest { /** * Test method for - * {@link uk.org.taverna.platform.run.api.RunProfile#getWorkflow()}. + * {@link org.apache.taverna.platform.run.api.RunProfile#getWorkflow()}. */ @Test public void testGetWorkflow() { @@ -131,7 +131,7 @@ public class RunProfileTest { /** * Test method for - * {@link uk.org.taverna.platform.run.api.RunProfile#setWorkflow(org.apache.taverna.scufl2.api.core.Workflow)} + * {@link org.apache.taverna.platform.run.api.RunProfile#setWorkflow(org.apache.taverna.scufl2.api.core.Workflow)} * . */ @Test @@ -150,7 +150,7 @@ public class RunProfileTest { /** * Test method for - * {@link uk.org.taverna.platform.run.api.RunProfile#getProfile()}. + * {@link org.apache.taverna.platform.run.api.RunProfile#getProfile()}. */ @Test public void testGetProfile() { @@ -164,7 +164,7 @@ public class RunProfileTest { /** * Test method for - * {@link uk.org.taverna.platform.run.api.RunProfile#setProfile(org.apache.taverna.scufl2.api.profiles.Profile)} + * {@link org.apache.taverna.platform.run.api.RunProfile#setProfile(org.apache.taverna.scufl2.api.profiles.Profile)} * . */ @Test @@ -183,7 +183,7 @@ public class RunProfileTest { /** * Test method for - * {@link uk.org.taverna.platform.run.api.RunProfile#getDataBundle()}. + * {@link org.apache.taverna.platform.run.api.RunProfile#getDataBundle()}. */ @Test public void testGetDataBundle() { @@ -194,7 +194,7 @@ public class RunProfileTest { /** * Test method for - * {@link uk.org.taverna.platform.run.api.RunProfile#setDataBundle(org.apache.taverna.robundle.Bundle)} + * {@link org.apache.taverna.platform.run.api.RunProfile#setDataBundle(org.apache.taverna.robundle.Bundle)} * . */ @Test @@ -207,7 +207,7 @@ public class RunProfileTest { /** * Test method for - * {@link uk.org.taverna.platform.run.api.RunProfile#getExecutionEnvironment()}. + * {@link org.apache.taverna.platform.run.api.RunProfile#getExecutionEnvironment()}. */ @Test public void testGetExecutionEnvironment() { @@ -218,7 +218,7 @@ public class RunProfileTest { /** * Test method for - * {@link uk.org.taverna.platform.run.api.RunProfile#setExecutionEnvironment(uk.org.taverna.platform.execution.api.ExecutionEnvironment)} + * {@link org.apache.taverna.platform.run.api.RunProfile#setExecutionEnvironment(org.apache.taverna.platform.execution.api.ExecutionEnvironment)} * . */ @Test
