Jelajahi Sumber

Added copyright and author headers.

markus.muehlbrandt@itemis.de 14 tahun lalu
induk
melakukan
0b03a32c11

+ 1 - 0
plugins/org.yakindu.sct.ui.navigator/plugin.xml

@@ -47,6 +47,7 @@
          </enablement>
       </actionProvider>
        <commonFilter
+             activeByDefault="true"
              class="org.yakindu.sct.ui.navigator.StatechartObjectViewerFilter"
              id="org.yakindu.sct.ui.navigator.statechartObjectFilter"
              name="Statechart Object Filter">

+ 15 - 1
plugins/org.yakindu.sct.ui.navigator/src/org/yakindu/sct/ui/navigator/DomainNavigatorItem.java

@@ -1,3 +1,13 @@
+/**
+ * Copyright (c) 2011 committers of YAKINDU and others.
+ * 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:
+ * 	committers of YAKINDU - initial API and implementation
+ * 
+ */
 package org.yakindu.sct.ui.navigator;
 
 import org.eclipse.core.runtime.IAdapterFactory;
@@ -8,7 +18,11 @@ import org.eclipse.emf.ecore.util.EcoreUtil;
 import org.eclipse.gmf.runtime.notation.View;
 import org.eclipse.ui.views.properties.IPropertySource;
 import org.eclipse.ui.views.properties.IPropertySourceProvider;
-
+/**
+ * 
+ * @author m.muehlbrandt
+ *
+ */
 @SuppressWarnings("rawtypes")
 public class DomainNavigatorItem extends PlatformObject {
 

+ 15 - 0
plugins/org.yakindu.sct.ui.navigator/src/org/yakindu/sct/ui/navigator/NavigatorActionProvider.java

@@ -1,3 +1,13 @@
+/**
+ * Copyright (c) 2011 committers of YAKINDU and others.
+ * 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:
+ * 	committers of YAKINDU - initial API and implementation
+ * 
+ */
 package org.yakindu.sct.ui.navigator;
 
 import org.eclipse.core.runtime.IAdaptable;
@@ -21,6 +31,11 @@ import org.eclipse.ui.navigator.ICommonActionExtensionSite;
 import org.eclipse.ui.navigator.ICommonViewerWorkbenchSite;
 import org.eclipse.ui.part.FileEditorInput;
 
+/**
+ * 
+ * @author m.muehlbrandt
+ *
+ */
 public class NavigatorActionProvider extends CommonActionProvider {
 
 	private boolean myContribute;

+ 15 - 0
plugins/org.yakindu.sct.ui.navigator/src/org/yakindu/sct/ui/navigator/NavigatorLinkHelper.java

@@ -1,3 +1,13 @@
+/**
+ * Copyright (c) 2011 committers of YAKINDU and others.
+ * 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:
+ * 	committers of YAKINDU - initial API and implementation
+ * 
+ */
 package org.yakindu.sct.ui.navigator;
 
 import java.util.Iterator;
@@ -28,6 +38,11 @@ import org.yakindu.sct.ui.navigator.utils.ComposedAdapterFactoryUtil;
 
 import de.itemis.xtext.utils.jface.viewers.util.ActiveEditorResolver;
 
+/**
+ * 
+ * @author m.muehlbrandt
+ *
+ */
 public class NavigatorLinkHelper implements ILinkHelper {
 
 	private AdapterFactoryContentProvider myAdapterFctoryContentProvier;

+ 0 - 8
plugins/org.yakindu.sct.ui.navigator/src/org/yakindu/sct/ui/navigator/StatechartNavigatorActionProvider.java

@@ -1,8 +0,0 @@
-package org.yakindu.sct.ui.navigator;
-
-import org.eclipse.ui.navigator.CommonActionProvider;
-
-public class StatechartNavigatorActionProvider extends CommonActionProvider {
-
-	
-}

+ 5 - 1
plugins/org.yakindu.sct.ui.navigator/src/org/yakindu/sct/ui/navigator/StatechartNavigatorContentProvider.java

@@ -5,7 +5,6 @@ import java.util.Collection;
 import java.util.HashMap;
 import java.util.Iterator;
 
-import org.eclipse.core.internal.resources.WorkspaceRoot;
 import org.eclipse.core.resources.IFile;
 import org.eclipse.emf.common.util.URI;
 import org.eclipse.emf.ecore.EObject;
@@ -25,6 +24,11 @@ import org.eclipse.ui.navigator.ICommonContentExtensionSite;
 import org.eclipse.ui.navigator.ICommonContentProvider;
 import org.yakindu.sct.ui.navigator.utils.ComposedAdapterFactoryUtil;
 
+/**
+ * 
+ * @author markus.muehlbrandt
+ *
+ */
 public class StatechartNavigatorContentProvider implements
 		ICommonContentProvider {
 

+ 15 - 0
plugins/org.yakindu.sct.ui.navigator/src/org/yakindu/sct/ui/navigator/StatechartNavigatorLabelProvider.java

@@ -1,3 +1,13 @@
+/**
+ * Copyright (c) 2011 committers of YAKINDU and others.
+ * 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:
+ * 	committers of YAKINDU - initial API and implementation
+ * 
+ */
 package org.yakindu.sct.ui.navigator;
 
 import org.eclipse.emf.edit.ui.provider.AdapterFactoryLabelProvider;
@@ -8,6 +18,11 @@ import org.eclipse.ui.navigator.ICommonContentExtensionSite;
 import org.eclipse.ui.navigator.ICommonLabelProvider;
 import org.yakindu.sct.ui.navigator.utils.ComposedAdapterFactoryUtil;
 
+/**
+ * 
+ * @author m.muehlbrandt
+ *
+ */
 public class StatechartNavigatorLabelProvider implements ICommonLabelProvider {
 
 	private AdapterFactoryLabelProvider myAdapterFactoryLabelProvider = new AdapterFactoryLabelProvider(

+ 15 - 0
plugins/org.yakindu.sct.ui.navigator/src/org/yakindu/sct/ui/navigator/StatechartObjectViewerFilter.java

@@ -1,3 +1,13 @@
+/**
+ * Copyright (c) 2011 committers of YAKINDU and others.
+ * 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:
+ * 	committers of YAKINDU - initial API and implementation
+ * 
+ */
 package org.yakindu.sct.ui.navigator;
 
 import org.eclipse.emf.ecore.EObject;
@@ -9,6 +19,11 @@ import org.yakindu.sct.model.sgraph.Trigger;
 import org.yakindu.sct.model.stext.stext.InterfaceScope;
 import org.yakindu.sct.model.stext.stext.InternalScope;
 
+/**
+ * 
+ * @author m.muehlbrandt
+ *
+ */
 public class StatechartObjectViewerFilter extends ViewerFilter {
 
 	@Override