From 5a752e0ab9663cf24822df0e65da8832b6352487 Mon Sep 17 00:00:00 2001 From: jmisinco Date: Tue, 11 Oct 2011 08:39:04 -0700 Subject: feature[ats_8KF8L]: Update distribution/author comments --- .../api/components/ArtifactHeaderComponent.java | 16 ++++++++++++---- .../display/api/components/AttributeComponent.java | 17 ++++++++++++----- .../osee/display/api/components/RelationComponent.java | 16 ++++++++++++---- .../display/api/components/SearchHeaderComponent.java | 16 ++++++++++++---- .../display/api/components/SearchResultComponent.java | 18 +++++++++++++----- .../api/components/SearchResultsListComponent.java | 16 ++++++++++++---- .../osee/display/api/data/SearchResultMatch.java | 13 +++++++++++++ .../src/org/eclipse/osee/display/api/data/WebId.java | 16 ++++++++++++---- .../osee/display/api/search/SearchNavigator.java | 16 ++++++++++++---- .../eclipse/osee/display/api/search/SearchView.java | 11 ----------- 10 files changed, 110 insertions(+), 45 deletions(-) delete mode 100644 plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/search/SearchView.java (limited to 'plugins/org.eclipse.osee.display.api/src') diff --git a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/ArtifactHeaderComponent.java b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/ArtifactHeaderComponent.java index 4bc548d9596..f8fd4426c5c 100644 --- a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/ArtifactHeaderComponent.java +++ b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/ArtifactHeaderComponent.java @@ -1,12 +1,20 @@ -/* - * Created on Sep 30, 2011 +/******************************************************************************* + * Copyright (c) 2011 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 * - * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE - */ + * Contributors: + * Boeing - initial API and implementation + *******************************************************************************/ package org.eclipse.osee.display.api.components; import org.eclipse.osee.display.api.data.WebArtifact; +/** + * @author Shawn F. Cook + */ public interface ArtifactHeaderComponent { void clearAll(); diff --git a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/AttributeComponent.java b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/AttributeComponent.java index b61408aa418..0870ba12337 100644 --- a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/AttributeComponent.java +++ b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/AttributeComponent.java @@ -1,11 +1,18 @@ -/* - * Created on Sep 30, 2011 +/******************************************************************************* + * Copyright (c) 2011 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 * - * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE - */ + * Contributors: + * Boeing - initial API and implementation + *******************************************************************************/ package org.eclipse.osee.display.api.components; - +/** + * @author Shawn F. Cook + */ public interface AttributeComponent { void clearAll(); diff --git a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/RelationComponent.java b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/RelationComponent.java index 59eb94f4a94..97d36e68406 100644 --- a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/RelationComponent.java +++ b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/RelationComponent.java @@ -1,13 +1,21 @@ -/* - * Created on Sep 30, 2011 +/******************************************************************************* + * Copyright (c) 2011 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 * - * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE - */ + * Contributors: + * Boeing - initial API and implementation + *******************************************************************************/ package org.eclipse.osee.display.api.components; import org.eclipse.osee.display.api.data.WebArtifact; import org.eclipse.osee.display.api.data.WebId; +/** + * @author Shawn F. Cook + */ public interface RelationComponent { void clearAll(); diff --git a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/SearchHeaderComponent.java b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/SearchHeaderComponent.java index 2359226ca1c..64fbc9dda74 100644 --- a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/SearchHeaderComponent.java +++ b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/SearchHeaderComponent.java @@ -1,10 +1,18 @@ -/* - * Created on Sep 30, 2011 +/******************************************************************************* + * Copyright (c) 2011 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 * - * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE - */ + * Contributors: + * Boeing - initial API and implementation + *******************************************************************************/ package org.eclipse.osee.display.api.components; +/** + * @author Shawn F. Cook + */ public interface SearchHeaderComponent { void clearAll(); diff --git a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/SearchResultComponent.java b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/SearchResultComponent.java index ceed1b552bf..bf1b490f913 100644 --- a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/SearchResultComponent.java +++ b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/SearchResultComponent.java @@ -1,13 +1,21 @@ -/* - * Created on Sep 30, 2011 +/******************************************************************************* + * Copyright (c) 2011 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 * - * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE - */ + * Contributors: + * Boeing - initial API and implementation + *******************************************************************************/ package org.eclipse.osee.display.api.components; -import org.eclipse.osee.display.api.data.WebArtifact; import org.eclipse.osee.display.api.data.SearchResultMatch; +import org.eclipse.osee.display.api.data.WebArtifact; +/** + * @author Shawn F. Cook + */ public interface SearchResultComponent { void setArtifact(WebArtifact artifact); diff --git a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/SearchResultsListComponent.java b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/SearchResultsListComponent.java index 421fbcfced2..eacf0e97fc7 100644 --- a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/SearchResultsListComponent.java +++ b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/components/SearchResultsListComponent.java @@ -1,10 +1,18 @@ -/* - * Created on Sep 30, 2011 +/******************************************************************************* + * Copyright (c) 2011 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 * - * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE - */ + * Contributors: + * Boeing - initial API and implementation + *******************************************************************************/ package org.eclipse.osee.display.api.components; +/** + * @author Shawn F. Cook + */ public interface SearchResultsListComponent { void clearAll(); diff --git a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/data/SearchResultMatch.java b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/data/SearchResultMatch.java index fce4dced1d6..756142eb323 100644 --- a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/data/SearchResultMatch.java +++ b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/data/SearchResultMatch.java @@ -1,5 +1,18 @@ +/******************************************************************************* + * Copyright (c) 2011 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.display.api.data; +/** + * @author Shawn F. Cook + */ public class SearchResultMatch { private final String attributeType; private final String matchHint; diff --git a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/data/WebId.java b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/data/WebId.java index d6de200de17..19c35598486 100644 --- a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/data/WebId.java +++ b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/data/WebId.java @@ -1,12 +1,20 @@ -/* - * Created on Sep 30, 2011 +/******************************************************************************* + * Copyright (c) 2011 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 * - * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE - */ + * Contributors: + * Boeing - initial API and implementation + *******************************************************************************/ package org.eclipse.osee.display.api.data; import org.eclipse.osee.framework.core.data.NamedIdentity; +/** + * @author John Misinco + */ public class WebId extends NamedIdentity { public WebId(String guid, String name) { diff --git a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/search/SearchNavigator.java b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/search/SearchNavigator.java index 688b94fb56b..bee058e18a6 100644 --- a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/search/SearchNavigator.java +++ b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/search/SearchNavigator.java @@ -1,10 +1,18 @@ -/* - * Created on Sep 30, 2011 +/******************************************************************************* + * Copyright (c) 2011 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 * - * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE - */ + * Contributors: + * Boeing - initial API and implementation + *******************************************************************************/ package org.eclipse.osee.display.api.search; +/** + * @author Shawn F. Cook + */ public interface SearchNavigator { void navigateSearchResults(String url); diff --git a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/search/SearchView.java b/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/search/SearchView.java deleted file mode 100644 index ae1fd18c75a..00000000000 --- a/plugins/org.eclipse.osee.display.api/src/org/eclipse/osee/display/api/search/SearchView.java +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Created on Sep 22, 2011 - * - * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE - */ -package org.eclipse.osee.display.api.search; - - -public interface SearchView { - -} -- cgit v1.2.3