Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen RevisionVorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
Nächste ÜberarbeitungBeide Seiten der Revision
software:deep:dev:start [2014-02-15 08:42] grafsoftware:deep:dev:start [2014-02-27 13:49] graf
Zeile 24: Zeile 24:
  
 ===== Overview ===== ===== Overview =====
-A Java compiler converts a Java file into a class file. A class file represents the original program in a compact binary form and could be interpreted by a JVM or, as in our case, will be translated directly in the target machine code. Bytecode is strictly defined in [[http://docs.oracle.com/javase/specs/jvms/se7/html/ :The Java Virtual Machine Specification, Java SE 7 Edition]] and can be verified.+A Java compiler converts a Java file into a class file. A class file represents the original program in a compact binary form and could be interpreted by a JVM or, as in our case, will be translated directly in the target machine code. Bytecode is strictly defined in [[http://docs.oracle.com/javase/specs/jvms/se7/html/|The Java Virtual Machine Specification, Java SE 7 Edition]] and can be verified.
  
 ===== Crosscompiler ===== ===== Crosscompiler =====
Zeile 40: Zeile 40:
  
 ==== Class File Browser ==== ==== Class File Browser ====
-When working extensively with class files our **Class File Browser** might be advantageous. It displays all information of a class file in easily readable form. It can downloaded as an eclipse plugin from FIXME.+When working extensively with class files our **Class File Browser** might be advantageous. It displays all information of a class file in easily readable form. It can downloaded as an eclipse plugin from [[https://marketplace.eclipse.org/content/eclipse-class-file-browser]].
  
 ==== Runtime System ==== ==== Runtime System ====