Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2013-09-21 16:44:17 +0000
committerEike Stepper2013-09-21 16:44:17 +0000
commit32b9825d0d19b5bd18e4c3bf4d66b5312f0551d3 (patch)
treef30e07150bf9b87bb7f87e00ef8e7e3fb945a184 /plugins/org.eclipse.emf.cdo.expressions.editor
parent3a5aed9500d5fc42cbbc2b8764e41398c7ded662 (diff)
downloadcdo-32b9825d0d19b5bd18e4c3bf4d66b5312f0551d3.tar.gz
cdo-32b9825d0d19b5bd18e4c3bf4d66b5312f0551d3.tar.xz
cdo-32b9825d0d19b5bd18e4c3bf4d66b5312f0551d3.zip
Adjust copyrights
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.expressions.editor')
-rw-r--r--plugins/org.eclipse.emf.cdo.expressions.editor/build.properties16
-rw-r--r--plugins/org.eclipse.emf.cdo.expressions.editor/plugin.properties13
-rw-r--r--plugins/org.eclipse.emf.cdo.expressions.editor/plugin.xml11
-rw-r--r--plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsActionBarContributor.java10
-rw-r--r--plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsEditor.java12
-rw-r--r--plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsEditorPlugin.java10
-rw-r--r--plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsModelWizard.java10
7 files changed, 72 insertions, 10 deletions
diff --git a/plugins/org.eclipse.emf.cdo.expressions.editor/build.properties b/plugins/org.eclipse.emf.cdo.expressions.editor/build.properties
index 9d0c07221a..be9788fe39 100644
--- a/plugins/org.eclipse.emf.cdo.expressions.editor/build.properties
+++ b/plugins/org.eclipse.emf.cdo.expressions.editor/build.properties
@@ -1,3 +1,14 @@
+# Copyright (c) 2013 Eike Stepper (Berlin, Germany) 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:
+# Eike Stepper - initial API and implementation
+
+# NLS_MESSAGEFORMAT_VAR
+
bin.includes = .,\
icons/,\
META-INF/,\
@@ -10,3 +21,8 @@ jars.compile.order = .
source.. = src/
src.includes = copyright.txt,\
about.html
+
+doc.project = org.eclipse.emf.cdo.doc
+
+generateSourceReferences = true
+ \ No newline at end of file
diff --git a/plugins/org.eclipse.emf.cdo.expressions.editor/plugin.properties b/plugins/org.eclipse.emf.cdo.expressions.editor/plugin.properties
index e6e0ef0846..d2589fe0e9 100644
--- a/plugins/org.eclipse.emf.cdo.expressions.editor/plugin.properties
+++ b/plugins/org.eclipse.emf.cdo.expressions.editor/plugin.properties
@@ -1,7 +1,14 @@
+# Copyright (c) 2013 Eike Stepper (Berlin, Germany) 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:
+# Eike Stepper - initial API and implementation
-pluginName = Expressions Editor
-providerName = www.example.org
+pluginName = CDO Model Repository Expressions Editor
+providerName = Eclipse Modeling Project
_UI_ExpressionsEditor_menu = &Expressions Editor
@@ -57,4 +64,4 @@ _UI_EcoreModelWizard_description = Create a new Ecore model
_UI_EcoreEditor_label = Ecore Model Editor
_UI_EcoreEditorFilenameDefaultBase = My
_UI_EcoreEditorFilenameExtensions = ecore
-
+
diff --git a/plugins/org.eclipse.emf.cdo.expressions.editor/plugin.xml b/plugins/org.eclipse.emf.cdo.expressions.editor/plugin.xml
index 1e5782f512..115c08ce0b 100644
--- a/plugins/org.eclipse.emf.cdo.expressions.editor/plugin.xml
+++ b/plugins/org.eclipse.emf.cdo.expressions.editor/plugin.xml
@@ -1,7 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
-<?eclipse version="3.0"?>
-
+<?eclipse version="3.4"?>
<!--
+ Copyright (c) 2013 Eike Stepper (Berlin, Germany) 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:
+ Eike Stepper - initial API and implementation
-->
<plugin>
diff --git a/plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsActionBarContributor.java b/plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsActionBarContributor.java
index 8b0aec4d19..740887f84e 100644
--- a/plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsActionBarContributor.java
+++ b/plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsActionBarContributor.java
@@ -1,4 +1,12 @@
-/**
+/*
+ * Copyright (c) 2013 Eike Stepper (Berlin, Germany) 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:
+ * Eike Stepper - initial API and implementation
*/
package org.eclipse.emf.cdo.expressions.presentation;
diff --git a/plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsEditor.java b/plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsEditor.java
index 7136d056af..5c1a280659 100644
--- a/plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsEditor.java
+++ b/plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsEditor.java
@@ -1,4 +1,12 @@
-/**
+/*
+ * Copyright (c) 2013 Eike Stepper (Berlin, Germany) 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:
+ * Eike Stepper - initial API and implementation
*/
package org.eclipse.emf.cdo.expressions.presentation;
@@ -1435,7 +1443,7 @@ public class ExpressionsEditor extends MultiPageEditorPart implements IEditingDo
*/
protected void doSaveAs(URI uri, IEditorInput editorInput)
{
- (editingDomain.getResourceSet().getResources().get(0)).setURI(uri);
+ editingDomain.getResourceSet().getResources().get(0).setURI(uri);
setInputWithNotify(editorInput);
setPartName(editorInput.getName());
IProgressMonitor progressMonitor = getActionBars().getStatusLineManager() != null ? getActionBars()
diff --git a/plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsEditorPlugin.java b/plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsEditorPlugin.java
index 1c59c4f36a..585ee772e0 100644
--- a/plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsEditorPlugin.java
+++ b/plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsEditorPlugin.java
@@ -1,4 +1,12 @@
-/**
+/*
+ * Copyright (c) 2013 Eike Stepper (Berlin, Germany) 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:
+ * Eike Stepper - initial API and implementation
*/
package org.eclipse.emf.cdo.expressions.presentation;
diff --git a/plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsModelWizard.java b/plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsModelWizard.java
index cc36d7d7a7..cf0925a8ce 100644
--- a/plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsModelWizard.java
+++ b/plugins/org.eclipse.emf.cdo.expressions.editor/src/org/eclipse/emf/cdo/expressions/presentation/ExpressionsModelWizard.java
@@ -1,4 +1,12 @@
-/**
+/*
+ * Copyright (c) 2013 Eike Stepper (Berlin, Germany) 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:
+ * Eike Stepper - initial API and implementation
*/
package org.eclipse.emf.cdo.expressions.presentation;

Back to the top