fix JavaDoc

This commit is contained in:
Volker 2018-06-10 21:00:51 +02:00
parent ecd61dcde7
commit e6093fa495
3 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
/*
Copyright 2011 - 2017 Volker Berlin (i-net software)
Copyright 2011 - 2018 Volker Berlin (i-net software)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@ -165,7 +165,7 @@ public class ClassFile {
* The access flags of the class.
* http://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html#jvms-4.1-200-E
* http://docs.oracle.com/javase/specs/jvms/se5.0/html/ClassFile.doc.html#23242
* @see #isInterface()
* @see java.lang.Class#isInterface()
*/
public int getAccessFlags() {
return accessFlags;

View File

@ -149,10 +149,10 @@ public class Code {
/**
* Check if the code only contains the default constructor code:
* <code><pre>
* <pre><code>
* super.&lt;init&gt;;
* return;
* </pre></code>
* </code></pre>
* In this case the constructor will not be printed
* @param superClass
* @return

View File

@ -35,7 +35,7 @@ interface InstructionOpcodes {
/**
* If the value on the stack is true then the if block is executed. <br>
* sequence: IF <return type> <br>
* sequence: IF {return type} <br>
* return type: can be void (0x40) <br>
* stack: remove one i32 value and compare it with 0 <br>
*/
@ -47,7 +47,7 @@ interface InstructionOpcodes {
/**
* Break a block/loop <br>
* sequence: BR <call deep> <br>
* sequence: BR {call deep} <br>
* call deep: How many blocks are break. 0 means the current block<br>
* stack: no change <br>
*/