gitignore added. CVS-Ordner ignorieren sowie class und package dateien

This commit is contained in:
JanUlrich 2014-02-04 17:42:14 +01:00
parent 64c652da71
commit 9626e0e14e
67 changed files with 12 additions and 2 deletions

10
.gitignore vendored Normal file
View File

@ -0,0 +1,10 @@
CVS
*.class
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.ear

0
bin/mycompiler/test/lambda/BasicAssumptions.jav Normal file → Executable file
View File

0
bin/mycompiler/test/lambda/ConstructorTestFile1.jav Normal file → Executable file
View File

0
bin/mycompiler/test/lambda/ConstructorTestFile2.jav Normal file → Executable file
View File

0
bin/mycompiler/test/lambda/GenericVarTest.jav Normal file → Executable file
View File

0
bin/mycompiler/test/lambda/LambdaTest1.jav Normal file → Executable file
View File

0
bin/mycompiler/test/lambda/OverloadingTest.jav Normal file → Executable file
View File

0
bin/mycompiler/test/lambda/TestAssign.jav Normal file → Executable file
View File

0
bin/mycompiler/test/lambda/TestFunN.jav Normal file → Executable file
View File

0
bin/mycompiler/test/lambda/TestIfStmt.jav Normal file → Executable file
View File

0
bin/mycompiler/test/lambda/TestLambda.jav Normal file → Executable file
View File

0
bin/mycompiler/test/lambda/TestMethodCall.jav Normal file → Executable file
View File

0
bin/mycompiler/test/lambda/TestWhile.jav Normal file → Executable file
View File

0
bin/mycompiler/test/lambda/ThisTest.jav Normal file → Executable file
View File

0
bin/mycompiler/test/lambda/parseMultipleFilesFile1.jav Normal file → Executable file
View File

0
bin/mycompiler/test/lambda/parseMultipleFilesFile2.jav Normal file → Executable file
View File

0
examples/lambda/general.jav Normal file → Executable file
View File

0
examples/lambda/test1.jav Normal file → Executable file
View File

0
examples/lambda/test2.jav Normal file → Executable file
View File

0
src/mycompiler/myclass/FieldInitialization.java Normal file → Executable file
View File

0
src/mycompiler/mystatement/LambdaExpression.java Normal file → Executable file
View File

0
src/mycompiler/mytest/LambdaTest.java Normal file → Executable file
View File

View File

@ -14,7 +14,7 @@ import typinferenz.ResultSet;
/**
*
* @author J<EFBFBD>rg B<EFBFBD>uerle
* @version $Date: 2013/09/22 20:12:53 $
* @version $Date: 2013/10/21 12:45:23 $
*/
// ino.end
// ino.class.GenericTypeVar.26505.declaration

View File

@ -22,7 +22,7 @@ import mycompiler.mytypereconstruction.replacementlistener.ITypeReplacementListe
* und
* ist in einer zentralen Registry, d.h. einer <code>Hashtable</code> abgelegt.
* @author J<EFBFBD>rg B<EFBFBD>uerle
* @version $Date: 2013/06/19 12:45:37 $
* @version $Date: 2013/10/21 12:45:22 $
*/
// ino.end
// ino.class.TypePlaceholder.26780.declaration

0
src/typinferenz/ConstraintsSet.java Normal file → Executable file
View File

0
src/typinferenz/FreshTypeVariable.java Normal file → Executable file
View File

0
src/typinferenz/FunN.java Normal file → Executable file
View File

0
src/typinferenz/JavaCodeResult.java Normal file → Executable file
View File

0
src/typinferenz/KarthesischesProdukt.java Normal file → Executable file
View File

0
src/typinferenz/OderConstraint.java Normal file → Executable file
View File

0
src/typinferenz/Overloading.java Normal file → Executable file
View File

0
src/typinferenz/ResultSet.java Normal file → Executable file
View File

0
src/typinferenz/SingleConstraint.java Normal file → Executable file
View File

0
src/typinferenz/Typable.java Normal file → Executable file
View File

0
src/typinferenz/TypeAssumptions.java Normal file → Executable file
View File

0
src/typinferenz/TypinferenzException.java Normal file → Executable file
View File

0
src/typinferenz/UndConstraint.java Normal file → Executable file
View File

0
src/userinterface/ConsoleInterface.java Normal file → Executable file
View File

0
test/mycompiler/test/LambdaInterferenzTest.java Normal file → Executable file
View File

View File

0
test/mycompiler/test/lambda/BasicAssumptions.jav Normal file → Executable file
View File

0
test/mycompiler/test/lambda/BasicAssumptionsTest.java Normal file → Executable file
View File

0
test/mycompiler/test/lambda/ConstructorTest.java Normal file → Executable file
View File

0
test/mycompiler/test/lambda/ConstructorTestFile1.jav Normal file → Executable file
View File

0
test/mycompiler/test/lambda/ConstructorTestFile2.jav Normal file → Executable file
View File

0
test/mycompiler/test/lambda/GenericVarTest.jav Normal file → Executable file
View File

0
test/mycompiler/test/lambda/GenericVarTest.java Normal file → Executable file
View File

0
test/mycompiler/test/lambda/LambdaTest1.jav Normal file → Executable file
View File

0
test/mycompiler/test/lambda/OverloadingTest.jav Normal file → Executable file
View File

0
test/mycompiler/test/lambda/OverloadingTest.java Normal file → Executable file
View File

View File

0
test/mycompiler/test/lambda/TestAssign.jav Normal file → Executable file
View File

0
test/mycompiler/test/lambda/TestAssign.java Normal file → Executable file
View File

0
test/mycompiler/test/lambda/TestFunN.jav Normal file → Executable file
View File

0
test/mycompiler/test/lambda/TestFunN.java Normal file → Executable file
View File

0
test/mycompiler/test/lambda/TestIfStmt.jav Normal file → Executable file
View File

0
test/mycompiler/test/lambda/TestIfStmt.java Normal file → Executable file
View File

0
test/mycompiler/test/lambda/TestLambda.jav Normal file → Executable file
View File

0
test/mycompiler/test/lambda/TestLambda.java Normal file → Executable file
View File

0
test/mycompiler/test/lambda/TestMethodCall.jav Normal file → Executable file
View File

0
test/mycompiler/test/lambda/TestMethodCall.java Normal file → Executable file
View File

0
test/mycompiler/test/lambda/TestThis.java Normal file → Executable file
View File

0
test/mycompiler/test/lambda/TestWhile.jav Normal file → Executable file
View File

0
test/mycompiler/test/lambda/TestWhile.java Normal file → Executable file
View File

0
test/mycompiler/test/lambda/ThisTest.jav Normal file → Executable file
View File

View File

View File