From e6093fa495f019e93440660405533ecdd1e13cb1 Mon Sep 17 00:00:00 2001 From: Volker Date: Sun, 10 Jun 2018 21:00:51 +0200 Subject: [PATCH] fix JavaDoc --- src/de/inetsoftware/classparser/ClassFile.java | 4 ++-- src/de/inetsoftware/classparser/Code.java | 4 ++-- .../inetsoftware/jwebassembly/binary/InstructionOpcodes.java | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/de/inetsoftware/classparser/ClassFile.java b/src/de/inetsoftware/classparser/ClassFile.java index f2f6e78e..367e4411 100644 --- a/src/de/inetsoftware/classparser/ClassFile.java +++ b/src/de/inetsoftware/classparser/ClassFile.java @@ -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 FieldInfo getField( String name ) { * 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; diff --git a/src/de/inetsoftware/classparser/Code.java b/src/de/inetsoftware/classparser/Code.java index f52e76f9..1ffa3bc0 100644 --- a/src/de/inetsoftware/classparser/Code.java +++ b/src/de/inetsoftware/classparser/Code.java @@ -149,10 +149,10 @@ public boolean startWithSuperInit( ConstantClass superClass ){ /** * Check if the code only contains the default constructor code: - *
+     * 

      * super.<init>;
      * return;
-     * 
+ *
* In this case the constructor will not be printed * @param superClass * @return diff --git a/src/de/inetsoftware/jwebassembly/binary/InstructionOpcodes.java b/src/de/inetsoftware/jwebassembly/binary/InstructionOpcodes.java index a8779888..fa6b3491 100644 --- a/src/de/inetsoftware/jwebassembly/binary/InstructionOpcodes.java +++ b/src/de/inetsoftware/jwebassembly/binary/InstructionOpcodes.java @@ -35,7 +35,7 @@ interface InstructionOpcodes { /** * If the value on the stack is true then the if block is executed.
- * sequence: IF
+ * sequence: IF {return type}
* return type: can be void (0x40)
* stack: remove one i32 value and compare it with 0
*/ @@ -47,7 +47,7 @@ interface InstructionOpcodes { /** * Break a block/loop
- * sequence: BR
+ * sequence: BR {call deep}
* call deep: How many blocks are break. 0 means the current block
* stack: no change
*/