From 2ec98e4b1fbae39045f3b2e480b61628ca10c468 Mon Sep 17 00:00:00 2001 From: Liviu Ionescu Date: Sat, 1 Aug 2015 21:14:59 +0300 Subject: [PATCH] Copyright notice added where missing --- .../src/ilg/gnuarmeclipse/core/StringUtils.java | 11 +++++++++++ .../src/ilg/gnuarmeclipse/core/SystemJob.java | 11 +++++++++++ .../src/ilg/gnuarmeclipse/core/SystemUIJob.java | 11 +++++++++++ .../core/preferences/LabelFakeFieldEditor.java | 11 +++++++++++ .../core/ui/FieldEditorPropertyPage.java | 11 +++++++++++ .../debug/gdbjtag/jlink/Configuration.java | 11 +++++++++++ .../debug/gdbjtag/openocd/Configuration.java | 11 +++++++++++ .../debug/gdbjtag/data/CProjectAttributes.java | 11 +++++++++++ .../cross/FloatABIManagedOptionHandleValue.java | 11 +++++++++++ .../src/ilg/gnuarmeclipse/managedbuild/cross/IDs.java | 11 +++++++++++ .../properties/ProjectToolsPathPropertyPage.java | 11 +++++++++++ .../packs/core/data/DurationMonitor.java | 11 +++++++++++ .../src/ilg/gnuarmeclipse/packs/data/Utils.java | 11 +++++++++++ .../packs/ui/views/CopyExampleDialog.java | 11 +++++++++++ .../ilg/gnuarmeclipse/templates/core/Activator.java | 11 +++++++++++ .../src/ilg/gnuarmeclipse/templates/core/Utils.java | 11 +++++++++++ .../core/processes/ConditionalSetProperty.java | 11 +++++++++++ .../core/processes/SetPropertyIfHasNature.java | 11 +++++++++++ .../core/processes/SetPropertyToPluginResource.java | 11 +++++++++++ .../gnuarmeclipse/templates/cortexm/Activator.java | 11 +++++++++++ .../pe/processes/RunProcessorExpertWizard.java | 11 +++++++++++ .../templates/freescale/pe/ui/ExtraPagesProvider.java | 11 +++++++++++ .../gnuarmeclipse/templates/freescale/pe/ui/PEW.java | 11 +++++++++++ .../templates/freescale/pe/ui/WizardPage.java | 11 +++++++++++ .../freescale/pe/ui/WizardPageOperation.java | 11 +++++++++++ .../gnuarmeclipse/templates/freescale/Activator.java | 11 +++++++++++ .../ilg/gnuarmeclipse/templates/stm/Activator.java | 11 +++++++++++ 27 files changed, 297 insertions(+) diff --git a/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/StringUtils.java b/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/StringUtils.java index 1b35034e8..71f7579f9 100644 --- a/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/StringUtils.java +++ b/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/StringUtils.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.core; import java.util.ArrayList; diff --git a/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/SystemJob.java b/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/SystemJob.java index 91ab88e8b..7e97c59a8 100644 --- a/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/SystemJob.java +++ b/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/SystemJob.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.core; import org.eclipse.core.runtime.jobs.Job; diff --git a/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/SystemUIJob.java b/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/SystemUIJob.java index ce4e122b7..b83cde177 100644 --- a/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/SystemUIJob.java +++ b/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/SystemUIJob.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.core; import org.eclipse.ui.progress.UIJob; diff --git a/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/preferences/LabelFakeFieldEditor.java b/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/preferences/LabelFakeFieldEditor.java index 85212697a..6540aa40f 100644 --- a/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/preferences/LabelFakeFieldEditor.java +++ b/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/preferences/LabelFakeFieldEditor.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.core.preferences; import org.eclipse.jface.preference.FieldEditor; diff --git a/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/ui/FieldEditorPropertyPage.java b/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/ui/FieldEditorPropertyPage.java index 3f012af2d..520cc0530 100644 --- a/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/ui/FieldEditorPropertyPage.java +++ b/ilg.gnuarmeclipse.core/src/ilg/gnuarmeclipse/core/ui/FieldEditorPropertyPage.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2015 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.core.ui; import org.eclipse.core.runtime.IAdaptable; diff --git a/ilg.gnuarmeclipse.debug.gdbjtag.jlink/src/ilg/gnuarmeclipse/debug/gdbjtag/jlink/Configuration.java b/ilg.gnuarmeclipse.debug.gdbjtag.jlink/src/ilg/gnuarmeclipse/debug/gdbjtag/jlink/Configuration.java index 28aac2a9f..732b3168f 100644 --- a/ilg.gnuarmeclipse.debug.gdbjtag.jlink/src/ilg/gnuarmeclipse/debug/gdbjtag/jlink/Configuration.java +++ b/ilg.gnuarmeclipse.debug.gdbjtag.jlink/src/ilg/gnuarmeclipse/debug/gdbjtag/jlink/Configuration.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.debug.gdbjtag.jlink; import ilg.gnuarmeclipse.core.EclipseUtils; diff --git a/ilg.gnuarmeclipse.debug.gdbjtag.openocd/src/ilg/gnuarmeclipse/debug/gdbjtag/openocd/Configuration.java b/ilg.gnuarmeclipse.debug.gdbjtag.openocd/src/ilg/gnuarmeclipse/debug/gdbjtag/openocd/Configuration.java index 3eb25f6d5..bbc8fc457 100644 --- a/ilg.gnuarmeclipse.debug.gdbjtag.openocd/src/ilg/gnuarmeclipse/debug/gdbjtag/openocd/Configuration.java +++ b/ilg.gnuarmeclipse.debug.gdbjtag.openocd/src/ilg/gnuarmeclipse/debug/gdbjtag/openocd/Configuration.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.debug.gdbjtag.openocd; import ilg.gnuarmeclipse.core.EclipseUtils; diff --git a/ilg.gnuarmeclipse.debug.gdbjtag/src/ilg/gnuarmeclipse/debug/gdbjtag/data/CProjectAttributes.java b/ilg.gnuarmeclipse.debug.gdbjtag/src/ilg/gnuarmeclipse/debug/gdbjtag/data/CProjectAttributes.java index e122ee844..a67c24a76 100644 --- a/ilg.gnuarmeclipse.debug.gdbjtag/src/ilg/gnuarmeclipse/debug/gdbjtag/data/CProjectAttributes.java +++ b/ilg.gnuarmeclipse.debug.gdbjtag/src/ilg/gnuarmeclipse/debug/gdbjtag/data/CProjectAttributes.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2015 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.debug.gdbjtag.data; import ilg.gnuarmeclipse.core.CProjectPacksStorage; diff --git a/ilg.gnuarmeclipse.managedbuild.cross/src/ilg/gnuarmeclipse/managedbuild/cross/FloatABIManagedOptionHandleValue.java b/ilg.gnuarmeclipse.managedbuild.cross/src/ilg/gnuarmeclipse/managedbuild/cross/FloatABIManagedOptionHandleValue.java index 076dc4b89..57882330a 100644 --- a/ilg.gnuarmeclipse.managedbuild.cross/src/ilg/gnuarmeclipse/managedbuild/cross/FloatABIManagedOptionHandleValue.java +++ b/ilg.gnuarmeclipse.managedbuild.cross/src/ilg/gnuarmeclipse/managedbuild/cross/FloatABIManagedOptionHandleValue.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2013 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.managedbuild.cross; import org.eclipse.cdt.managedbuilder.core.BuildException; diff --git a/ilg.gnuarmeclipse.managedbuild.cross/src/ilg/gnuarmeclipse/managedbuild/cross/IDs.java b/ilg.gnuarmeclipse.managedbuild.cross/src/ilg/gnuarmeclipse/managedbuild/cross/IDs.java index 168f436a8..a3736d4a8 100644 --- a/ilg.gnuarmeclipse.managedbuild.cross/src/ilg/gnuarmeclipse/managedbuild/cross/IDs.java +++ b/ilg.gnuarmeclipse.managedbuild.cross/src/ilg/gnuarmeclipse/managedbuild/cross/IDs.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.managedbuild.cross; public class IDs { diff --git a/ilg.gnuarmeclipse.managedbuild.cross/src/ilg/gnuarmeclipse/managedbuild/cross/properties/ProjectToolsPathPropertyPage.java b/ilg.gnuarmeclipse.managedbuild.cross/src/ilg/gnuarmeclipse/managedbuild/cross/properties/ProjectToolsPathPropertyPage.java index 336d1333a..dd0a07089 100644 --- a/ilg.gnuarmeclipse.managedbuild.cross/src/ilg/gnuarmeclipse/managedbuild/cross/properties/ProjectToolsPathPropertyPage.java +++ b/ilg.gnuarmeclipse.managedbuild.cross/src/ilg/gnuarmeclipse/managedbuild/cross/properties/ProjectToolsPathPropertyPage.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2015 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.managedbuild.cross.properties; import ilg.gnuarmeclipse.core.EclipseUtils; diff --git a/ilg.gnuarmeclipse.packs.core/src/ilg/gnuarmeclipse/packs/core/data/DurationMonitor.java b/ilg.gnuarmeclipse.packs.core/src/ilg/gnuarmeclipse/packs/core/data/DurationMonitor.java index dc5ad9bd5..1230e2bb2 100644 --- a/ilg.gnuarmeclipse.packs.core/src/ilg/gnuarmeclipse/packs/core/data/DurationMonitor.java +++ b/ilg.gnuarmeclipse.packs.core/src/ilg/gnuarmeclipse/packs/core/data/DurationMonitor.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.packs.core.data; import ilg.gnuarmeclipse.packs.core.ConsoleStream; diff --git a/ilg.gnuarmeclipse.packs.data/src/ilg/gnuarmeclipse/packs/data/Utils.java b/ilg.gnuarmeclipse.packs.data/src/ilg/gnuarmeclipse/packs/data/Utils.java index b9359804a..cfc388845 100644 --- a/ilg.gnuarmeclipse.packs.data/src/ilg/gnuarmeclipse/packs/data/Utils.java +++ b/ilg.gnuarmeclipse.packs.data/src/ilg/gnuarmeclipse/packs/data/Utils.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.packs.data; import ilg.gnuarmeclipse.core.StringUtils; diff --git a/ilg.gnuarmeclipse.packs.ui/src/ilg/gnuarmeclipse/packs/ui/views/CopyExampleDialog.java b/ilg.gnuarmeclipse.packs.ui/src/ilg/gnuarmeclipse/packs/ui/views/CopyExampleDialog.java index 6353515f3..b74c46036 100644 --- a/ilg.gnuarmeclipse.packs.ui/src/ilg/gnuarmeclipse/packs/ui/views/CopyExampleDialog.java +++ b/ilg.gnuarmeclipse.packs.ui/src/ilg/gnuarmeclipse/packs/ui/views/CopyExampleDialog.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.packs.ui.views; import ilg.gnuarmeclipse.packs.core.Preferences; diff --git a/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/Activator.java b/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/Activator.java index a391b1033..3ba4e89e0 100644 --- a/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/Activator.java +++ b/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/Activator.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2013 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.templates.core; import ilg.gnuarmeclipse.core.AbstractActivator; diff --git a/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/Utils.java b/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/Utils.java index 08f9267eb..d771f199c 100644 --- a/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/Utils.java +++ b/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/Utils.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2013 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.templates.core; import org.eclipse.cdt.managedbuilder.core.IConfiguration; diff --git a/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/processes/ConditionalSetProperty.java b/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/processes/ConditionalSetProperty.java index 4a0d3a40c..3563fd0b5 100644 --- a/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/processes/ConditionalSetProperty.java +++ b/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/processes/ConditionalSetProperty.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.templates.core.processes; import ilg.gnuarmeclipse.templates.core.Activator; diff --git a/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/processes/SetPropertyIfHasNature.java b/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/processes/SetPropertyIfHasNature.java index d3af44926..7a8d7bd10 100644 --- a/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/processes/SetPropertyIfHasNature.java +++ b/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/processes/SetPropertyIfHasNature.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.templates.core.processes; import ilg.gnuarmeclipse.templates.core.Activator; diff --git a/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/processes/SetPropertyToPluginResource.java b/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/processes/SetPropertyToPluginResource.java index 237c6b244..9146e8449 100644 --- a/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/processes/SetPropertyToPluginResource.java +++ b/ilg.gnuarmeclipse.templates.core/src/ilg/gnuarmeclipse/templates/core/processes/SetPropertyToPluginResource.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.templates.core.processes; import ilg.gnuarmeclipse.templates.core.Activator; diff --git a/ilg.gnuarmeclipse.templates.cortexm/src/ilg/gnuarmeclipse/templates/cortexm/Activator.java b/ilg.gnuarmeclipse.templates.cortexm/src/ilg/gnuarmeclipse/templates/cortexm/Activator.java index e3ece1bbe..c38bd9254 100644 --- a/ilg.gnuarmeclipse.templates.cortexm/src/ilg/gnuarmeclipse/templates/cortexm/Activator.java +++ b/ilg.gnuarmeclipse.templates.cortexm/src/ilg/gnuarmeclipse/templates/cortexm/Activator.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.templates.cortexm; import ilg.gnuarmeclipse.core.AbstractActivator; diff --git a/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/processes/RunProcessorExpertWizard.java b/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/processes/RunProcessorExpertWizard.java index c329b9180..752ae72a2 100644 --- a/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/processes/RunProcessorExpertWizard.java +++ b/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/processes/RunProcessorExpertWizard.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.templates.freescale.pe.processes; import ilg.gnuarmeclipse.templates.freescale.pe.Activator; diff --git a/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/ui/ExtraPagesProvider.java b/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/ui/ExtraPagesProvider.java index 03bfe5872..39a9933a3 100644 --- a/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/ui/ExtraPagesProvider.java +++ b/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/ui/ExtraPagesProvider.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.templates.freescale.pe.ui; import java.util.Collections; diff --git a/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/ui/PEW.java b/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/ui/PEW.java index d36370f6d..58e935041 100644 --- a/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/ui/PEW.java +++ b/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/ui/PEW.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.templates.freescale.pe.ui; import ilg.gnuarmeclipse.templates.freescale.pe.Activator; diff --git a/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/ui/WizardPage.java b/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/ui/WizardPage.java index 260f30213..eff9b3b4d 100644 --- a/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/ui/WizardPage.java +++ b/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/ui/WizardPage.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.templates.freescale.pe.ui; import org.eclipse.cdt.managedbuilder.ui.wizards.MBSCustomPage; diff --git a/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/ui/WizardPageOperation.java b/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/ui/WizardPageOperation.java index d910473f2..9a8adb34e 100644 --- a/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/ui/WizardPageOperation.java +++ b/ilg.gnuarmeclipse.templates.freescale.pe/src/ilg/gnuarmeclipse/templates/freescale/pe/ui/WizardPageOperation.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.templates.freescale.pe.ui; import ilg.gnuarmeclipse.templates.freescale.pe.Activator; diff --git a/ilg.gnuarmeclipse.templates.freescale/src/ilg/gnuarmeclipse/templates/freescale/Activator.java b/ilg.gnuarmeclipse.templates.freescale/src/ilg/gnuarmeclipse/templates/freescale/Activator.java index 9a660f8f3..096865b35 100644 --- a/ilg.gnuarmeclipse.templates.freescale/src/ilg/gnuarmeclipse/templates/freescale/Activator.java +++ b/ilg.gnuarmeclipse.templates.freescale/src/ilg/gnuarmeclipse/templates/freescale/Activator.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2014 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.templates.freescale; import ilg.gnuarmeclipse.core.AbstractActivator; diff --git a/ilg.gnuarmeclipse.templates.stm/src/ilg/gnuarmeclipse/templates/stm/Activator.java b/ilg.gnuarmeclipse.templates.stm/src/ilg/gnuarmeclipse/templates/stm/Activator.java index 426dadfcc..d88fa1956 100644 --- a/ilg.gnuarmeclipse.templates.stm/src/ilg/gnuarmeclipse/templates/stm/Activator.java +++ b/ilg.gnuarmeclipse.templates.stm/src/ilg/gnuarmeclipse/templates/stm/Activator.java @@ -1,3 +1,14 @@ +/******************************************************************************* + * Copyright (c) 2013 Liviu Ionescu. + * 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: + * Liviu Ionescu - initial version + *******************************************************************************/ + package ilg.gnuarmeclipse.templates.stm; import ilg.gnuarmeclipse.core.AbstractActivator;