Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/navigate/AtsQuickSearchData.java')
-rw-r--r--plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/navigate/AtsQuickSearchData.java88
1 files changed, 44 insertions, 44 deletions
diff --git a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/navigate/AtsQuickSearchData.java b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/navigate/AtsQuickSearchData.java
index 1e26d01f0f0..15d275ef5ec 100644
--- a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/navigate/AtsQuickSearchData.java
+++ b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/navigate/AtsQuickSearchData.java
@@ -1,44 +1,44 @@
-/*******************************************************************************
- * 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.ats.navigate;
-
-/**
- * @author Donald G. Dunne
- */
-public class AtsQuickSearchData {
- private final String searchStr;
- private boolean includeCompleteCancelled = false;
- private final String name;
-
- public AtsQuickSearchData(String name, String searchStr, boolean includeCompleteCancelled) {
- this.name = name;
- this.searchStr = searchStr;
- this.includeCompleteCancelled = includeCompleteCancelled;
- }
-
- public boolean isIncludeCompleteCancelled() {
- return includeCompleteCancelled;
- }
-
- public void setIncludeCompleteCancelled(boolean includeCompleteCancelled) {
- this.includeCompleteCancelled = includeCompleteCancelled;
- }
-
- public String getSearchStr() {
- return searchStr;
- }
-
- @Override
- public String toString() {
- return String.format("%s - [%s]%s", name, searchStr,
- includeCompleteCancelled ? " - Include Completed/Cancelled" : "");
- }
-}
+/*******************************************************************************
+ * 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.ats.navigate;
+
+/**
+ * @author Donald G. Dunne
+ */
+public class AtsQuickSearchData {
+ private final String searchStr;
+ private boolean includeCompleteCancelled = false;
+ private final String name;
+
+ public AtsQuickSearchData(String name, String searchStr, boolean includeCompleteCancelled) {
+ this.name = name;
+ this.searchStr = searchStr;
+ this.includeCompleteCancelled = includeCompleteCancelled;
+ }
+
+ public boolean isIncludeCompleteCancelled() {
+ return includeCompleteCancelled;
+ }
+
+ public void setIncludeCompleteCancelled(boolean includeCompleteCancelled) {
+ this.includeCompleteCancelled = includeCompleteCancelled;
+ }
+
+ public String getSearchStr() {
+ return searchStr;
+ }
+
+ @Override
+ public String toString() {
+ return String.format("%s - [%s]%s", name, searchStr,
+ includeCompleteCancelled ? " - Include Completed/Cancelled" : "");
+ }
+}

Back to the top