Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.modisco.jee.jsp.discoverer')
-rw-r--r--org.eclipse.modisco.jee.jsp.discoverer/OSGI-INF/l10n/bundle.properties4
-rw-r--r--org.eclipse.modisco.jee.jsp.discoverer/build.properties4
-rw-r--r--org.eclipse.modisco.jee.jsp.discoverer/plugin.xml4
-rw-r--r--org.eclipse.modisco.jee.jsp.discoverer/resources/internal/launch.bat4
-rw-r--r--org.eclipse.modisco.jee.jsp.discoverer/src-gen/org/eclipse/modisco/jee/jsp/discoverer/parser/JSPLexer.java4
-rw-r--r--org.eclipse.modisco.jee.jsp.discoverer/src-gen/org/eclipse/modisco/jee/jsp/discoverer/parser/JSPParser.java4
-rw-r--r--org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/AbstractJspDiscoverer.java4
-rw-r--r--org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/DiscoverJspModelFromJavaElement.java4
-rw-r--r--org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/DiscoverJspModelFromResource.java4
-rw-r--r--org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/JSPDiscoveryConstants.java13
-rw-r--r--org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/JspActivator.java4
-rw-r--r--org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/Messages.java4
-rw-r--r--org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/messages.properties4
13 files changed, 37 insertions, 24 deletions
diff --git a/org.eclipse.modisco.jee.jsp.discoverer/OSGI-INF/l10n/bundle.properties b/org.eclipse.modisco.jee.jsp.discoverer/OSGI-INF/l10n/bundle.properties
index 34cab62f6..533a15e8a 100644
--- a/org.eclipse.modisco.jee.jsp.discoverer/OSGI-INF/l10n/bundle.properties
+++ b/org.eclipse.modisco.jee.jsp.discoverer/OSGI-INF/l10n/bundle.properties
@@ -1,5 +1,5 @@
###########################################################################
-# Copyright (c) 2010, 2011 Mia-Software.
+# Copyright (c) 2010, 2019 Mia-Software.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v2.0
# which accompanies this distribution, and is available at
@@ -8,7 +8,7 @@
# Contributors:
#
# Nicolas Guyomar (Mia-Software) - initial API and implementation
-############################################################################
+############################################################################
#Properties file for org.eclipse.modisco.jee.jsp.discoverer
Bundle-Vendor = Eclipse Modeling Project
Bundle-Name = MoDisco Java Server Pages Discoverer
diff --git a/org.eclipse.modisco.jee.jsp.discoverer/build.properties b/org.eclipse.modisco.jee.jsp.discoverer/build.properties
index 0e204e205..b9861704c 100644
--- a/org.eclipse.modisco.jee.jsp.discoverer/build.properties
+++ b/org.eclipse.modisco.jee.jsp.discoverer/build.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 Mia-Software and others.
+# Copyright (c) 2011, 2019 Mia-Software and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v2.0
# which accompanies this distribution, and is available at
@@ -8,7 +8,7 @@
# Contributors:
# Nicolas Guyomar (Mia-Software) - initial API and implementation
# Fabien Giquel (Mia-Software) - Bug 533168 - (releng) OutOfMemory during quality postprocessing because large number of checkstyle warnings
-###############################################################################
+###############################################################################
source.. = src/,\
src-gen/
output.. = bin/
diff --git a/org.eclipse.modisco.jee.jsp.discoverer/plugin.xml b/org.eclipse.modisco.jee.jsp.discoverer/plugin.xml
index dae7c8748..c8881474d 100644
--- a/org.eclipse.modisco.jee.jsp.discoverer/plugin.xml
+++ b/org.eclipse.modisco.jee.jsp.discoverer/plugin.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<!--
-Copyright (c) 2010, 2011 Mia-Software.
+Copyright (c) 2010, 2019 Mia-Software.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v2.0
which accompanies this distribution, and is available at
@@ -10,7 +10,7 @@ http://www.eclipse.org/legal/epl-v20.html
Contributors:
Nicolas Guyomar (Mia-Software) - initial API and implementation
Nicolas Bros (Mia-Software) - adapted to new discovery framework (Bug 335003)
--->
+-->
<plugin>
<extension
point="org.eclipse.modisco.infra.discovery.core.discoverer">
diff --git a/org.eclipse.modisco.jee.jsp.discoverer/resources/internal/launch.bat b/org.eclipse.modisco.jee.jsp.discoverer/resources/internal/launch.bat
index 8332b7cdb..fb3e1b9f1 100644
--- a/org.eclipse.modisco.jee.jsp.discoverer/resources/internal/launch.bat
+++ b/org.eclipse.modisco.jee.jsp.discoverer/resources/internal/launch.bat
@@ -1,10 +1,10 @@
@rem ***************************************************************************
-@rem Copyright (c) 2011 Mia-Software.
+@rem Copyright (c) 2011, 2019 Mia-Software.
@rem All rights reserved. This program and the accompanying materials
@rem are made available under the terms of the Eclipse Public License v2.0
@rem which accompanies this distribution, and is available at
@rem http://www.eclipse.org/legal/epl-v20.html
-@rem ***************************************************************************
+@rem ***************************************************************************
rem to generate parser and lexer class, put the antlr library in current folder
rem don't forget to update the command line with the version of antlr library
rem see https://bugs.eclipse.org/bugs/show_bug.cgi?id=553058 for 3.0 to 3.2 migration
diff --git a/org.eclipse.modisco.jee.jsp.discoverer/src-gen/org/eclipse/modisco/jee/jsp/discoverer/parser/JSPLexer.java b/org.eclipse.modisco.jee.jsp.discoverer/src-gen/org/eclipse/modisco/jee/jsp/discoverer/parser/JSPLexer.java
index 4211cba4c..c997f77db 100644
--- a/org.eclipse.modisco.jee.jsp.discoverer/src-gen/org/eclipse/modisco/jee/jsp/discoverer/parser/JSPLexer.java
+++ b/org.eclipse.modisco.jee.jsp.discoverer/src-gen/org/eclipse/modisco/jee/jsp/discoverer/parser/JSPLexer.java
@@ -1,7 +1,7 @@
// $ANTLR 3.2 Sep 23, 2009 12:02:23 JSP.g 2019-11-14 15:50:29
/**
- * Copyright (c) 2010 Mia-Software.
+ * Copyright (c) 2010, 2019 Mia-Software.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
@@ -11,7 +11,7 @@
*
* Nicolas Guyomar (Mia-Software) - initial API and implementation
*
- */
+ */
package org.eclipse.modisco.jee.jsp.discoverer.parser;
import org.eclipse.modisco.infra.common.core.logging.MoDiscoLogger;
import org.eclipse.modisco.jee.jsp.discoverer.JspActivator;
diff --git a/org.eclipse.modisco.jee.jsp.discoverer/src-gen/org/eclipse/modisco/jee/jsp/discoverer/parser/JSPParser.java b/org.eclipse.modisco.jee.jsp.discoverer/src-gen/org/eclipse/modisco/jee/jsp/discoverer/parser/JSPParser.java
index 5ecd53b90..62a49b697 100644
--- a/org.eclipse.modisco.jee.jsp.discoverer/src-gen/org/eclipse/modisco/jee/jsp/discoverer/parser/JSPParser.java
+++ b/org.eclipse.modisco.jee.jsp.discoverer/src-gen/org/eclipse/modisco/jee/jsp/discoverer/parser/JSPParser.java
@@ -1,7 +1,7 @@
// $ANTLR 3.2 Sep 23, 2009 12:02:23 JSP.g 2019-11-14 15:50:28
/**
- * Copyright (c) 2010 Mia-Software.
+ * Copyright (c) 2010, 2019 Mia-Software.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
@@ -11,7 +11,7 @@
*
* Nicolas Guyomar (Mia-Software) - initial API and implementation
*
- */
+ */
package org.eclipse.modisco.jee.jsp.discoverer.parser;
import org.eclipse.modisco.infra.common.core.logging.MoDiscoLogger;
import org.eclipse.modisco.jee.jsp.*;
diff --git a/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/AbstractJspDiscoverer.java b/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/AbstractJspDiscoverer.java
index 8ce836009..3beda8200 100644
--- a/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/AbstractJspDiscoverer.java
+++ b/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/AbstractJspDiscoverer.java
@@ -1,5 +1,5 @@
/*********************************************************************************
- * Copyright (c) 2009,2011 Mia-Software and others.
+ * Copyright (c) 2009,2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
@@ -9,7 +9,7 @@
* Fabien Giquel (Mia-Software) - initial API and implementation
* Nicolas Bros (Mia-Software) - adapted to new discovery framework (Bug 335003)
* Fabien Giquel (Mia-Software) - upper case files extensions are not supported (Bug 463078)
- *********************************************************************************/
+ *********************************************************************************/
package org.eclipse.modisco.jee.jsp.discoverer;
import java.io.File;
diff --git a/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/DiscoverJspModelFromJavaElement.java b/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/DiscoverJspModelFromJavaElement.java
index 573c9472f..9f47714ea 100644
--- a/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/DiscoverJspModelFromJavaElement.java
+++ b/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/DiscoverJspModelFromJavaElement.java
@@ -1,5 +1,5 @@
/*********************************************************************************
- * Copyright (c) 2009,2011 Mia-Software and others.
+ * Copyright (c) 2009,2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
@@ -8,7 +8,7 @@
* Contributors:
* Fabien Giquel (Mia-Software) - initial API and implementation
* Nicolas Bros (Mia-Software) - adapted to new discovery framework (Bug 335003)
- *********************************************************************************/
+ *********************************************************************************/
package org.eclipse.modisco.jee.jsp.discoverer;
import org.eclipse.core.resources.IContainer;
diff --git a/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/DiscoverJspModelFromResource.java b/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/DiscoverJspModelFromResource.java
index 70fd91e00..dd6951039 100644
--- a/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/DiscoverJspModelFromResource.java
+++ b/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/DiscoverJspModelFromResource.java
@@ -1,5 +1,5 @@
/*********************************************************************************
- * Copyright (c) 2009,2011 Mia-Software and others.
+ * Copyright (c) 2009,2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
@@ -8,7 +8,7 @@
* Contributors:
* Fabien Giquel (Mia-Software) - initial API and implementation
* Nicolas Bros (Mia-Software) - adapted to new discovery framework (Bug 335003)
- *********************************************************************************/
+ *********************************************************************************/
package org.eclipse.modisco.jee.jsp.discoverer;
import java.io.File;
diff --git a/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/JSPDiscoveryConstants.java b/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/JSPDiscoveryConstants.java
index 129db305f..d110acfeb 100644
--- a/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/JSPDiscoveryConstants.java
+++ b/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/JSPDiscoveryConstants.java
@@ -1,3 +1,16 @@
+/*******************************************************************************
+ * Copyright (c) 2019 Mia-Software and others.
+ *
+ * This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License 2.0
+ * which accompanies this distribution, and is available at
+ * https://www.eclipse.org/legal/epl-2.0/
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ *
+ * Contributors:
+ * Unknown - initial API and implementation
+ *******************************************************************************/
package org.eclipse.modisco.jee.jsp.discoverer;
public final class JSPDiscoveryConstants {
diff --git a/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/JspActivator.java b/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/JspActivator.java
index 6c35b739e..4392ca39a 100644
--- a/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/JspActivator.java
+++ b/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/JspActivator.java
@@ -1,5 +1,5 @@
/*********************************************************************************
- * Copyright (c) 2009,2011 Mia-Software and others.
+ * Copyright (c) 2009,2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
@@ -8,7 +8,7 @@
* Contributors:
* Fabien Giquel (Mia-Software) - initial API and implementation
* Nicolas Bros (Mia-Software) - adapted to new discovery framework (Bug 335003)
- *********************************************************************************/
+ *********************************************************************************/
package org.eclipse.modisco.jee.jsp.discoverer;
import org.eclipse.ui.plugin.AbstractUIPlugin;
diff --git a/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/Messages.java b/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/Messages.java
index 2b7f1b36a..dd8e84ff1 100644
--- a/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/Messages.java
+++ b/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/Messages.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2011 Mia-Software and others.
+ * Copyright (c) 2011, 2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
@@ -7,7 +7,7 @@
*
* Contributors:
* Nicolas Bros (Mia-Software) - initial API and implementation
- *******************************************************************************/
+ *******************************************************************************/
package org.eclipse.modisco.jee.jsp.discoverer;
import org.eclipse.osgi.util.NLS;
diff --git a/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/messages.properties b/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/messages.properties
index 4d72f6f9b..edccbfed5 100644
--- a/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/messages.properties
+++ b/org.eclipse.modisco.jee.jsp.discoverer/src/org/eclipse/modisco/jee/jsp/discoverer/messages.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 Mia-Software and others.
+# Copyright (c) 2011, 2019 Mia-Software and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v2.0
# which accompanies this distribution, and is available at
@@ -7,6 +7,6 @@
#
# Contributors:
# Nicolas Bros (Mia-Software) - initial API and implementation
-###############################################################################
+###############################################################################
discoveringJspModel=Discovering generic Java Server Pages model
DiscoverJspModelFromResource_savingDiscoveredModel=Saving discovered model

Back to the top