Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonald.g.dunne2018-11-07 21:54:45 +0000
committerRyan D. Brooks2018-11-07 21:54:45 +0000
commit1fbce17a3f4a5483a5aa1b07fd5f2d754b4fb754 (patch)
tree0f0604b9d945731641de83a9bd2e95889375b551 /plugins/org.eclipse.osee.framework.core.dsl.ui.integration
parent8cd0626b21335d824d202cc5e55d3a0a9d2ebec5 (diff)
downloadorg.eclipse.osee-1fbce17a3f4a5483a5aa1b07fd5f2d754b4fb754.tar.gz
org.eclipse.osee-1fbce17a3f4a5483a5aa1b07fd5f2d754b4fb754.tar.xz
org.eclipse.osee-1fbce17a3f4a5483a5aa1b07fd5f2d754b4fb754.zip
bug: Cleanup javadoc
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.dsl.ui.integration')
-rw-r--r--plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/ArtifactDataProviderImpl.java5
-rw-r--r--plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/DslUiIntegrationConstants.java3
-rw-r--r--plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeTypeModifier.java5
3 files changed, 11 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/ArtifactDataProviderImpl.java b/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/ArtifactDataProviderImpl.java
index 5ac1d14d137..e4b33342a8e 100644
--- a/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/ArtifactDataProviderImpl.java
+++ b/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/ArtifactDataProviderImpl.java
@@ -27,6 +27,9 @@ import org.eclipse.osee.framework.logging.OseeLog;
import org.eclipse.osee.framework.skynet.core.OseeSystemArtifacts;
import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
+/**
+ * @author Roberto E. Escobar
+ */
public final class ArtifactDataProviderImpl implements ArtifactDataProvider {
@Override
@@ -145,4 +148,4 @@ public final class ArtifactDataProviderImpl implements ArtifactDataProvider {
return self.getId();
}
}
-} \ No newline at end of file
+}
diff --git a/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/DslUiIntegrationConstants.java b/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/DslUiIntegrationConstants.java
index ece432faec6..cb3f48bbd82 100644
--- a/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/DslUiIntegrationConstants.java
+++ b/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/DslUiIntegrationConstants.java
@@ -10,6 +10,9 @@
*******************************************************************************/
package org.eclipse.osee.framework.core.dsl.ui.integration.internal;
+/**
+ * @author Roberto E. Escobar
+ */
public final class DslUiIntegrationConstants {
private DslUiIntegrationConstants() {
diff --git a/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeTypeModifier.java b/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeTypeModifier.java
index a50409c9948..c70d3bf0686 100644
--- a/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeTypeModifier.java
+++ b/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeTypeModifier.java
@@ -40,6 +40,9 @@ import org.eclipse.osee.framework.skynet.core.artifact.search.ArtifactQuery;
import org.eclipse.osee.framework.ui.skynet.render.AttributeModifier;
import org.eclipse.osee.jaxrs.client.JaxRsClient;
+/**
+ * @author Roberto E. Escobar
+ */
public class OseeTypeModifier implements AttributeModifier {
@Override
@@ -111,4 +114,4 @@ public class OseeTypeModifier implements AttributeModifier {
boolean wasAdded = set.add(uuid);
Conditions.checkExpressionFailOnTrue(!wasAdded, "Duplicate uuid found: [0x%X]", uuid);
}
-} \ No newline at end of file
+}

Back to the top