Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/OseeField.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/OseeField.java82
1 files changed, 41 insertions, 41 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/OseeField.java b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/OseeField.java
index e39fc62cbe4..b5d31f1be25 100644
--- a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/OseeField.java
+++ b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/OseeField.java
@@ -1,41 +1,41 @@
-/*******************************************************************************
- * Copyright (c) 2009 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.core.model;
-
-import org.eclipse.osee.framework.jdk.core.util.Compare;
-
-/**
- * @author Roberto E. Escobar
- */
-public final class OseeField<T> extends AbstractOseeField<T> {
-
- private T object;
-
- public OseeField(T initValue) {
- super();
- set(initValue);
- }
-
- public OseeField() {
- super();
- }
-
- @Override
- public void set(T value) {
- isDirty |= Compare.isDifferent(get(), value);
- this.object = value;
- }
-
- @Override
- public T get() {
- return object;
- }
-}
+/*******************************************************************************
+ * Copyright (c) 2009 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.core.model;
+
+import org.eclipse.osee.framework.jdk.core.util.Compare;
+
+/**
+ * @author Roberto E. Escobar
+ */
+public final class OseeField<T> extends AbstractOseeField<T> {
+
+ private T object;
+
+ public OseeField(T initValue) {
+ super();
+ set(initValue);
+ }
+
+ public OseeField() {
+ super();
+ }
+
+ @Override
+ public void set(T value) {
+ isDirty |= Compare.isDifferent(get(), value);
+ this.object = value;
+ }
+
+ @Override
+ public T get() {
+ return object;
+ }
+}

Back to the top