diff options
Diffstat (limited to 'ex1')
| -rw-r--r-- | ex1/.classpath | 57 | ||||
| -rw-r--r-- | ex1/.project | 34 | ||||
| -rw-r--r-- | ex1/.settings/org.eclipse.core.resources.prefs | 4 | ||||
| -rw-r--r-- | ex1/.settings/org.eclipse.jdt.apt.core.prefs | 2 | ||||
| -rw-r--r-- | ex1/.settings/org.eclipse.jdt.core.prefs | 9 | ||||
| -rw-r--r-- | ex1/.settings/org.eclipse.m2e.core.prefs | 4 | ||||
| -rw-r--r-- | ex1/pom.xml | 2 | ||||
| -rw-r--r-- | ex1/src/main/java/reflection/api/App.java (renamed from ex1/src/main/java/com/reflection/api/App.java) | 0 | ||||
| -rw-r--r-- | ex1/src/main/java/reflection/api/Investigator.java (renamed from ex1/src/main/java/com/reflection/api/Investigator.java) | 0 | ||||
| -rw-r--r-- | ex1/target/classes/reflection/api/App.class | bin | 0 -> 576 bytes | |||
| -rw-r--r-- | ex1/target/classes/reflection/api/Investigator.class | bin | 0 -> 1058 bytes | |||
| -rw-r--r-- | ex1/target/test-classes/com/reflection/api/AppTest.class | bin | 0 -> 511 bytes |
12 files changed, 111 insertions, 1 deletions
diff --git a/ex1/.classpath b/ex1/.classpath new file mode 100644 index 0000000..df66b20 --- /dev/null +++ b/ex1/.classpath | |||
| @@ -0,0 +1,57 @@ | |||
| 1 | <?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | <classpath> | ||
| 3 | <classpathentry kind="src" output="target/classes" path="src/main/java"> | ||
| 4 | <attributes> | ||
| 5 | <attribute name="optional" value="true"/> | ||
| 6 | <attribute name="maven.pomderived" value="true"/> | ||
| 7 | </attributes> | ||
| 8 | </classpathentry> | ||
| 9 | <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"> | ||
| 10 | <attributes> | ||
| 11 | <attribute name="maven.pomderived" value="true"/> | ||
| 12 | <attribute name="optional" value="true"/> | ||
| 13 | </attributes> | ||
| 14 | </classpathentry> | ||
| 15 | <classpathentry kind="src" output="target/test-classes" path="src/test/java"> | ||
| 16 | <attributes> | ||
| 17 | <attribute name="optional" value="true"/> | ||
| 18 | <attribute name="maven.pomderived" value="true"/> | ||
| 19 | <attribute name="test" value="true"/> | ||
| 20 | </attributes> | ||
| 21 | </classpathentry> | ||
| 22 | <classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"> | ||
| 23 | <attributes> | ||
| 24 | <attribute name="maven.pomderived" value="true"/> | ||
| 25 | <attribute name="test" value="true"/> | ||
| 26 | <attribute name="optional" value="true"/> | ||
| 27 | </attributes> | ||
| 28 | </classpathentry> | ||
| 29 | <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"> | ||
| 30 | <attributes> | ||
| 31 | <attribute name="maven.pomderived" value="true"/> | ||
| 32 | </attributes> | ||
| 33 | </classpathentry> | ||
| 34 | <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> | ||
| 35 | <attributes> | ||
| 36 | <attribute name="maven.pomderived" value="true"/> | ||
| 37 | </attributes> | ||
| 38 | </classpathentry> | ||
| 39 | <classpathentry kind="src" path="target/generated-sources/annotations"> | ||
| 40 | <attributes> | ||
| 41 | <attribute name="optional" value="true"/> | ||
| 42 | <attribute name="maven.pomderived" value="true"/> | ||
| 43 | <attribute name="ignore_optional_problems" value="true"/> | ||
| 44 | <attribute name="m2e-apt" value="true"/> | ||
| 45 | </attributes> | ||
| 46 | </classpathentry> | ||
| 47 | <classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations"> | ||
| 48 | <attributes> | ||
| 49 | <attribute name="optional" value="true"/> | ||
| 50 | <attribute name="maven.pomderived" value="true"/> | ||
| 51 | <attribute name="ignore_optional_problems" value="true"/> | ||
| 52 | <attribute name="m2e-apt" value="true"/> | ||
| 53 | <attribute name="test" value="true"/> | ||
| 54 | </attributes> | ||
| 55 | </classpathentry> | ||
| 56 | <classpathentry kind="output" path="target/classes"/> | ||
| 57 | </classpath> | ||
diff --git a/ex1/.project b/ex1/.project new file mode 100644 index 0000000..421f7ec --- /dev/null +++ b/ex1/.project | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | <?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | <projectDescription> | ||
| 3 | <name>ex1</name> | ||
| 4 | <comment></comment> | ||
| 5 | <projects> | ||
| 6 | </projects> | ||
| 7 | <buildSpec> | ||
| 8 | <buildCommand> | ||
| 9 | <name>org.eclipse.jdt.core.javabuilder</name> | ||
| 10 | <arguments> | ||
| 11 | </arguments> | ||
| 12 | </buildCommand> | ||
| 13 | <buildCommand> | ||
| 14 | <name>org.eclipse.m2e.core.maven2Builder</name> | ||
| 15 | <arguments> | ||
| 16 | </arguments> | ||
| 17 | </buildCommand> | ||
| 18 | </buildSpec> | ||
| 19 | <natures> | ||
| 20 | <nature>org.eclipse.jdt.core.javanature</nature> | ||
| 21 | <nature>org.eclipse.m2e.core.maven2Nature</nature> | ||
| 22 | </natures> | ||
| 23 | <filteredResources> | ||
| 24 | <filter> | ||
| 25 | <id>1784712768512</id> | ||
| 26 | <name></name> | ||
| 27 | <type>30</type> | ||
| 28 | <matcher> | ||
| 29 | <id>org.eclipse.core.resources.regexFilterMatcher</id> | ||
| 30 | <arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments> | ||
| 31 | </matcher> | ||
| 32 | </filter> | ||
| 33 | </filteredResources> | ||
| 34 | </projectDescription> | ||
diff --git a/ex1/.settings/org.eclipse.core.resources.prefs b/ex1/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 0000000..f9fe345 --- /dev/null +++ b/ex1/.settings/org.eclipse.core.resources.prefs | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | eclipse.preferences.version=1 | ||
| 2 | encoding//src/main/java=UTF-8 | ||
| 3 | encoding//src/test/java=UTF-8 | ||
| 4 | encoding/<project>=UTF-8 | ||
diff --git a/ex1/.settings/org.eclipse.jdt.apt.core.prefs b/ex1/.settings/org.eclipse.jdt.apt.core.prefs new file mode 100644 index 0000000..d4313d4 --- /dev/null +++ b/ex1/.settings/org.eclipse.jdt.apt.core.prefs | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | eclipse.preferences.version=1 | ||
| 2 | org.eclipse.jdt.apt.aptEnabled=false | ||
diff --git a/ex1/.settings/org.eclipse.jdt.core.prefs b/ex1/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000..a4e59d9 --- /dev/null +++ b/ex1/.settings/org.eclipse.jdt.core.prefs | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | eclipse.preferences.version=1 | ||
| 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 | ||
| 3 | org.eclipse.jdt.core.compiler.compliance=17 | ||
| 4 | org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled | ||
| 5 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning | ||
| 6 | org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore | ||
| 7 | org.eclipse.jdt.core.compiler.processAnnotations=disabled | ||
| 8 | org.eclipse.jdt.core.compiler.release=enabled | ||
| 9 | org.eclipse.jdt.core.compiler.source=17 | ||
diff --git a/ex1/.settings/org.eclipse.m2e.core.prefs b/ex1/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 0000000..f897a7f --- /dev/null +++ b/ex1/.settings/org.eclipse.m2e.core.prefs | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | activeProfiles= | ||
| 2 | eclipse.preferences.version=1 | ||
| 3 | resolveWorkspaceProjects=true | ||
| 4 | version=1 | ||
diff --git a/ex1/pom.xml b/ex1/pom.xml index 3962137..b8a0d5a 100644 --- a/ex1/pom.xml +++ b/ex1/pom.xml | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> | 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | 5 | ||
| 6 | <groupId>com.reflection.api</groupId> | 6 | <groupId>reflection.api</groupId> |
| 7 | <artifactId>ex1</artifactId> | 7 | <artifactId>ex1</artifactId> |
| 8 | <version>1.0-SNAPSHOT</version> | 8 | <version>1.0-SNAPSHOT</version> |
| 9 | 9 | ||
diff --git a/ex1/src/main/java/com/reflection/api/App.java b/ex1/src/main/java/reflection/api/App.java index 04cd919..04cd919 100644 --- a/ex1/src/main/java/com/reflection/api/App.java +++ b/ex1/src/main/java/reflection/api/App.java | |||
diff --git a/ex1/src/main/java/com/reflection/api/Investigator.java b/ex1/src/main/java/reflection/api/Investigator.java index 53e4fab..53e4fab 100644 --- a/ex1/src/main/java/com/reflection/api/Investigator.java +++ b/ex1/src/main/java/reflection/api/Investigator.java | |||
diff --git a/ex1/target/classes/reflection/api/App.class b/ex1/target/classes/reflection/api/App.class new file mode 100644 index 0000000..0cbae67 --- /dev/null +++ b/ex1/target/classes/reflection/api/App.class | |||
| Binary files differ | |||
diff --git a/ex1/target/classes/reflection/api/Investigator.class b/ex1/target/classes/reflection/api/Investigator.class new file mode 100644 index 0000000..01731c6 --- /dev/null +++ b/ex1/target/classes/reflection/api/Investigator.class | |||
| Binary files differ | |||
diff --git a/ex1/target/test-classes/com/reflection/api/AppTest.class b/ex1/target/test-classes/com/reflection/api/AppTest.class new file mode 100644 index 0000000..cdc15d1 --- /dev/null +++ b/ex1/target/test-classes/com/reflection/api/AppTest.class | |||
| Binary files differ | |||