Compare commits

..

2 Commits

Author SHA1 Message Date
Aldaron7
2d598d28e9 Erste Tests für strucTypes 2017-10-18 17:39:16 +02:00
Aldaron7
9faf25d670 Documentation anfügen 2017-10-18 14:30:31 +02:00
1128 changed files with 2394 additions and 11465 deletions

3
.gitignore vendored
View File

@@ -20,6 +20,3 @@ bin
.project
.settings/
/target/
#
manually/

View File

@@ -1,19 +0,0 @@
# plugin site erstellen
* die JAvaTXCOmpiler DAtei in ein plugin umwandeln und deployen.
* siehe: http://www.vogella.com/tutorials/EclipseJarToPlugin/article.html#convert-jar-files-to-osgi-bundles-with-the-p2-maven-plugin
* AUsführung:
* mvn deploy #erstellt die JAR-Datei und steckt sie in ein lokales Repo (maven-repository)
* mvn p2:site
* mvn package # hier wird die ZIP-Filf zum Einbinden in Eclipse erstellt
# Einbinden in Eclipse
* In Eclipse kann die Zip-FIle wie ein Plugin installiert werden
* Hier tritt FEhler auf. Reflections-Library kann nicht installiert werden. Möglicherweise wird sie auch nicht gebraucht
* Nach dem installieren de.dhbwstuttagrt.JavaTXcompiler zu den DEpendencies des plugins hinzufügen
* Anschließend unter "Overview" auf "Updata Classpath" klicken
# Windows
* JAVA_HOME setzen:
* export JAVA_HOME=/c/Program\ Files/Java/jdk1.8.0_102/

25
doc/Generics/generics.tex Normal file
View File

@@ -0,0 +1,25 @@
\documentclass{article}
\begin{document}
\section{Generics sind notwendig}
Generics können nicht ignoriert werden.
Folgender Fall ist Typisierbar:
\begin{program}
<T> T m1(T x){
return m2(x);
}
m2(x){
m1(1);
m2("Test");
return m1(x);
}
\end{program}
Beim weglassen des Generics T wäre es aber nicht mehr möglich.
Dann erhält jeder Constraint, welcher in Verbindung mit der Methode m1 steht
den selben TPH.
\end{document}

0
doc/Javadoc/allclasses-frame.html Executable file → Normal file
View File

0
doc/Javadoc/allclasses-noframe.html Executable file → Normal file
View File

0
doc/Javadoc/constant-values.html Executable file → Normal file
View File

0
doc/Javadoc/deprecated-list.html Executable file → Normal file
View File

0
doc/Javadoc/help-doc.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-1.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-10.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-11.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-12.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-13.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-14.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-15.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-16.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-17.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-18.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-19.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-2.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-20.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-21.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-22.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-23.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-24.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-3.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-4.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-5.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-6.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-7.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-8.html Executable file → Normal file
View File

0
doc/Javadoc/index-files/index-9.html Executable file → Normal file
View File

0
doc/Javadoc/index.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/MyCompiler.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/MyCompilerAPI.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/SourceFile.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/class-use/MyCompiler.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/class-use/MyCompilerAPI.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/class-use/SourceFile.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/mybytecode/Attribute.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/mybytecode/AttributeInfo.html Executable file → Normal file
View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

0
doc/Javadoc/mycompiler/mybytecode/CPInfo.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/mybytecode/ClassFile.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/mybytecode/CodeAttribute.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/mybytecode/ExceptionTable.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/mybytecode/FieldInfo.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/mybytecode/JVMCode.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/mybytecode/Key.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/mybytecode/MethodInfo.html Executable file → Normal file
View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

0
doc/Javadoc/mycompiler/mybytecode/class-use/Key.html Executable file → Normal file
View File

View File

0
doc/Javadoc/mycompiler/mybytecode/package-frame.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/mybytecode/package-summary.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/mybytecode/package-tree.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/mybytecode/package-use.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/myclass/Class.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/myclass/ClassBody.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/myclass/ClassDeclId.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/myclass/Constructor.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/myclass/DeclId.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/myclass/ExceptionList.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/myclass/FieldDecl.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/myclass/FormalParameter.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/myclass/InstVarDecl.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/myclass/Method.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/myclass/ParameterList.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/myclass/Status.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/myclass/UsedId.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/myclass/UserDef.html Executable file → Normal file
View File

0
doc/Javadoc/mycompiler/myclass/class-use/Class.html Executable file → Normal file
View File

Some files were not shown because too many files have changed in this diff Show More