Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/ArtifactDecoratorPreferences.java')
-rw-r--r--plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/ArtifactDecoratorPreferences.java132
1 files changed, 66 insertions, 66 deletions
diff --git a/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/ArtifactDecoratorPreferences.java b/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/ArtifactDecoratorPreferences.java
index 7c7c3106818..e27133f69bb 100644
--- a/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/ArtifactDecoratorPreferences.java
+++ b/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/ArtifactDecoratorPreferences.java
@@ -1,66 +1,66 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Boeing.
- * 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:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.framework.ui.skynet;
-
-import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
-
-/**
- * @author Roberto E. Escobar
- */
-public class ArtifactDecoratorPreferences implements IArtifactDecoratorPreferences {
-
- private boolean isShowArtIdsAllowed;
- private boolean isShowArtTypeAllowed;
- private boolean isShowBranchAllowed;
- private boolean isShowArtVersionAllowed;
-
- @Override
- public String getSelectedAttributeData(Artifact artifact) {
- return "";
- }
-
- public void setShowArtIds(boolean isShowArtIdsAllowed) {
- this.isShowArtIdsAllowed = isShowArtIdsAllowed;
- }
-
- public void setShowArtType(boolean isShowArtTypeAllowed) {
- this.isShowArtTypeAllowed = isShowArtTypeAllowed;
- }
-
- public void setShowArtBranch(boolean isShowBranchAllowed) {
- this.isShowBranchAllowed = isShowBranchAllowed;
- }
-
- public void setShowArtVersion(boolean isShowArtVersionAllowed) {
- this.isShowArtVersionAllowed = isShowArtVersionAllowed;
- }
-
- @Override
- public boolean showArtIds() {
- return isShowArtIdsAllowed;
- }
-
- @Override
- public boolean showArtType() {
- return isShowArtTypeAllowed;
- }
-
- @Override
- public boolean showArtBranch() {
- return isShowBranchAllowed;
- }
-
- @Override
- public boolean showArtVersion() {
- return isShowArtVersionAllowed;
- }
-
-}
+/*******************************************************************************
+ * Copyright (c) 2004, 2007 Boeing.
+ * 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:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.framework.ui.skynet;
+
+import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
+
+/**
+ * @author Roberto E. Escobar
+ */
+public class ArtifactDecoratorPreferences implements IArtifactDecoratorPreferences {
+
+ private boolean isShowArtIdsAllowed;
+ private boolean isShowArtTypeAllowed;
+ private boolean isShowBranchAllowed;
+ private boolean isShowArtVersionAllowed;
+
+ @Override
+ public String getSelectedAttributeData(Artifact artifact) {
+ return "";
+ }
+
+ public void setShowArtIds(boolean isShowArtIdsAllowed) {
+ this.isShowArtIdsAllowed = isShowArtIdsAllowed;
+ }
+
+ public void setShowArtType(boolean isShowArtTypeAllowed) {
+ this.isShowArtTypeAllowed = isShowArtTypeAllowed;
+ }
+
+ public void setShowArtBranch(boolean isShowBranchAllowed) {
+ this.isShowBranchAllowed = isShowBranchAllowed;
+ }
+
+ public void setShowArtVersion(boolean isShowArtVersionAllowed) {
+ this.isShowArtVersionAllowed = isShowArtVersionAllowed;
+ }
+
+ @Override
+ public boolean showArtIds() {
+ return isShowArtIdsAllowed;
+ }
+
+ @Override
+ public boolean showArtType() {
+ return isShowArtTypeAllowed;
+ }
+
+ @Override
+ public boolean showArtBranch() {
+ return isShowBranchAllowed;
+ }
+
+ @Override
+ public boolean showArtVersion() {
+ return isShowArtVersionAllowed;
+ }
+
+}

Back to the top