Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.search.engine/src/org/eclipse/osee/framework/search/engine/ISearchStatistics.java')
-rw-r--r--plugins/org.eclipse.osee.framework.search.engine/src/org/eclipse/osee/framework/search/engine/ISearchStatistics.java90
1 files changed, 45 insertions, 45 deletions
diff --git a/plugins/org.eclipse.osee.framework.search.engine/src/org/eclipse/osee/framework/search/engine/ISearchStatistics.java b/plugins/org.eclipse.osee.framework.search.engine/src/org/eclipse/osee/framework/search/engine/ISearchStatistics.java
index 6775bccbc59..5807043328b 100644
--- a/plugins/org.eclipse.osee.framework.search.engine/src/org/eclipse/osee/framework/search/engine/ISearchStatistics.java
+++ b/plugins/org.eclipse.osee.framework.search.engine/src/org/eclipse/osee/framework/search/engine/ISearchStatistics.java
@@ -1,45 +1,45 @@
-/*******************************************************************************
- * 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.search.engine;
-
-/**
- * @author Roberto E. Escobar
- */
-public interface ISearchStatistics {
-
- /**
- * Get average search time in milliseconds
- *
- * @return average search time in milliseconds
- */
- public long getAverageSearchTime();
-
- /**
- * Get total number of searches processed
- *
- * @return total number of searches
- */
- public int getTotalSearches();
-
- /**
- * Get longest search time
- *
- * @return longest search time
- */
- public long getLongestSearchTime();
-
- /**
- * Get longest search information.
- *
- * @return search info
- */
- public String getLongestSearch();
-}
+/*******************************************************************************
+ * 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.search.engine;
+
+/**
+ * @author Roberto E. Escobar
+ */
+public interface ISearchStatistics {
+
+ /**
+ * Get average search time in milliseconds
+ *
+ * @return average search time in milliseconds
+ */
+ public long getAverageSearchTime();
+
+ /**
+ * Get total number of searches processed
+ *
+ * @return total number of searches
+ */
+ public int getTotalSearches();
+
+ /**
+ * Get longest search time
+ *
+ * @return longest search time
+ */
+ public long getLongestSearchTime();
+
+ /**
+ * Get longest search information.
+ *
+ * @return search info
+ */
+ public String getLongestSearch();
+}

Back to the top