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.gmt.modisco.java.discoverer.tests/workspace/test001/src/innerclass/InnerClass.java')
-rw-r--r--org.eclipse.gmt.modisco.java.discoverer.tests/workspace/test001/src/innerclass/InnerClass.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/org.eclipse.gmt.modisco.java.discoverer.tests/workspace/test001/src/innerclass/InnerClass.java b/org.eclipse.gmt.modisco.java.discoverer.tests/workspace/test001/src/innerclass/InnerClass.java
new file mode 100644
index 000000000..3718b437a
--- /dev/null
+++ b/org.eclipse.gmt.modisco.java.discoverer.tests/workspace/test001/src/innerclass/InnerClass.java
@@ -0,0 +1,26 @@
+/*******************************************************************************
+ * Copyright (c) 2009 Mia-Software.
+ * 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:
+ * Gregoire DUPE (Mia-Software)
+ * Romain Dervaux (Mia-Software)
+ *******************************************************************************/
+package innerclass;
+
+public class InnerClass {
+ public class InnerClass2 {
+ public class InnerClass3 {
+ public class InnerClass4 {
+ public class InnerClass5 {
+
+ }
+
+ }
+ }
+ }
+}
+

Back to the top