Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DSUB.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DSUB.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DSUB.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DSUB.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* DSUB - Substract doubles
* <PRE>Stack: ..., value1.word1, value1.word2, value2.word1, value2.word2 -></PRE>
@@ -26,26 +25,27 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class DSUB extends ArithmeticInstruction {
- /** Substract doubles
- */
- public DSUB() {
- super(org.apache.bcel.Constants.DSUB);
- }
+
+ /** Substract doubles
+ */
+ public DSUB() {
+ super(org.apache.bcel.Constants.DSUB);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitTypedInstruction(this);
- v.visitStackProducer(this);
- v.visitStackConsumer(this);
- v.visitArithmeticInstruction(this);
- v.visitDSUB(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitTypedInstruction(this);
+ v.visitStackProducer(this);
+ v.visitStackConsumer(this);
+ v.visitArithmeticInstruction(this);
+ v.visitDSUB(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* DUP - Duplicate top operand stack word
* <PRE>Stack: ..., word -> ..., word, word</PRE>
@@ -25,23 +24,24 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class DUP extends StackInstruction implements PushInstruction {
- public DUP() {
- super(org.apache.bcel.Constants.DUP);
- }
+
+ public DUP() {
+ super(org.apache.bcel.Constants.DUP);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitStackProducer(this);
- v.visitPushInstruction(this);
- v.visitStackInstruction(this);
- v.visitDUP(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitStackProducer(this);
+ v.visitPushInstruction(this);
+ v.visitStackInstruction(this);
+ v.visitDUP(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP2.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP2.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP2.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP2.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* DUP2 - Duplicate two top operand stack words
* <PRE>Stack: ..., word2, word1 -> ..., word2, word1, word2, word1</PRE>
@@ -25,23 +24,24 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class DUP2 extends StackInstruction implements PushInstruction {
- public DUP2() {
- super(org.apache.bcel.Constants.DUP2);
- }
+
+ public DUP2() {
+ super(org.apache.bcel.Constants.DUP2);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitStackProducer(this);
- v.visitPushInstruction(this);
- v.visitStackInstruction(this);
- v.visitDUP2(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitStackProducer(this);
+ v.visitPushInstruction(this);
+ v.visitStackInstruction(this);
+ v.visitDUP2(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP2_X1.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP2_X1.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP2_X1.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP2_X1.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* DUP2_X1 - Duplicate two top operand stack words and put three down
* <PRE>Stack: ..., word3, word2, word1 -> ..., word2, word1, word3, word2, word1</PRE>
@@ -25,21 +24,22 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class DUP2_X1 extends StackInstruction {
- public DUP2_X1() {
- super(org.apache.bcel.Constants.DUP2_X1);
- }
+
+ public DUP2_X1() {
+ super(org.apache.bcel.Constants.DUP2_X1);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitStackInstruction(this);
- v.visitDUP2_X1(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitStackInstruction(this);
+ v.visitDUP2_X1(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP2_X2.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP2_X2.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP2_X2.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP2_X2.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* DUP2_X2 - Duplicate two top operand stack words and put four down
* <PRE>Stack: ..., word4, word3, word2, word1 -> ..., word2, word1, word4, word3, word2, word1</PRE>
@@ -25,21 +24,22 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class DUP2_X2 extends StackInstruction {
- public DUP2_X2() {
- super(org.apache.bcel.Constants.DUP2_X2);
- }
+
+ public DUP2_X2() {
+ super(org.apache.bcel.Constants.DUP2_X2);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitStackInstruction(this);
- v.visitDUP2_X2(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitStackInstruction(this);
+ v.visitDUP2_X2(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP_X1.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP_X1.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP_X1.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP_X1.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* DUP_X1 - Duplicate top operand stack word and put two down
* <PRE>Stack: ..., word2, word1 -> ..., word1, word2, word1</PRE>
@@ -25,21 +24,22 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class DUP_X1 extends StackInstruction {
- public DUP_X1() {
- super(org.apache.bcel.Constants.DUP_X1);
- }
+
+ public DUP_X1() {
+ super(org.apache.bcel.Constants.DUP_X1);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitStackInstruction(this);
- v.visitDUP_X1(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitStackInstruction(this);
+ v.visitDUP_X1(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP_X2.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP_X2.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP_X2.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/DUP_X2.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* DUP_X2 - Duplicate top operand stack word and put three down
* <PRE>Stack: ..., word3, word2, word1 -> ..., word1, word3, word2, word1</PRE>
@@ -25,21 +24,22 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class DUP_X2 extends StackInstruction {
- public DUP_X2() {
- super(org.apache.bcel.Constants.DUP_X2);
- }
+
+ public DUP_X2() {
+ super(org.apache.bcel.Constants.DUP_X2);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitStackInstruction(this);
- v.visitDUP_X2(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitStackInstruction(this);
+ v.visitDUP_X2(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/EmptyVisitor.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/EmptyVisitor.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/EmptyVisitor.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/EmptyVisitor.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* Supplies empty method bodies to be overridden by subclasses.
*
@@ -24,184 +23,723 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public abstract class EmptyVisitor implements Visitor {
- public void visitStackInstruction(StackInstruction obj) { }
- public void visitLocalVariableInstruction(LocalVariableInstruction obj) { }
- public void visitBranchInstruction(BranchInstruction obj) { }
- public void visitLoadClass(LoadClass obj) { }
- public void visitFieldInstruction(FieldInstruction obj) { }
- public void visitIfInstruction(IfInstruction obj) { }
- public void visitConversionInstruction(ConversionInstruction obj) { }
- public void visitPopInstruction(PopInstruction obj) { }
- public void visitJsrInstruction(JsrInstruction obj) { }
- public void visitGotoInstruction(GotoInstruction obj) { }
- public void visitStoreInstruction(StoreInstruction obj) { }
- public void visitTypedInstruction(TypedInstruction obj) { }
- public void visitSelect(Select obj) { }
- public void visitUnconditionalBranch(UnconditionalBranch obj) { }
- public void visitPushInstruction(PushInstruction obj) { }
- public void visitArithmeticInstruction(ArithmeticInstruction obj) { }
- public void visitCPInstruction(CPInstruction obj) { }
- public void visitInvokeInstruction(InvokeInstruction obj) { }
- public void visitArrayInstruction(ArrayInstruction obj) { }
- public void visitAllocationInstruction(AllocationInstruction obj) { }
- public void visitReturnInstruction(ReturnInstruction obj) { }
- public void visitFieldOrMethod(FieldOrMethod obj) { }
- public void visitConstantPushInstruction(ConstantPushInstruction obj) { }
- public void visitExceptionThrower(ExceptionThrower obj) { }
- public void visitLoadInstruction(LoadInstruction obj) { }
- public void visitVariableLengthInstruction(VariableLengthInstruction obj) { }
- public void visitStackProducer(StackProducer obj) { }
- public void visitStackConsumer(StackConsumer obj) { }
- public void visitACONST_NULL(ACONST_NULL obj) { }
- public void visitGETSTATIC(GETSTATIC obj) { }
- public void visitIF_ICMPLT(IF_ICMPLT obj) { }
- public void visitMONITOREXIT(MONITOREXIT obj) { }
- public void visitIFLT(IFLT obj) { }
- public void visitLSTORE(LSTORE obj) { }
- public void visitPOP2(POP2 obj) { }
- public void visitBASTORE(BASTORE obj) { }
- public void visitISTORE(ISTORE obj) { }
- public void visitCHECKCAST(CHECKCAST obj) { }
- public void visitFCMPG(FCMPG obj) { }
- public void visitI2F(I2F obj) { }
- public void visitATHROW(ATHROW obj) { }
- public void visitDCMPL(DCMPL obj) { }
- public void visitARRAYLENGTH(ARRAYLENGTH obj) { }
- public void visitDUP(DUP obj) { }
- public void visitINVOKESTATIC(INVOKESTATIC obj) { }
- public void visitLCONST(LCONST obj) { }
- public void visitDREM(DREM obj) { }
- public void visitIFGE(IFGE obj) { }
- public void visitCALOAD(CALOAD obj) { }
- public void visitLASTORE(LASTORE obj) { }
- public void visitI2D(I2D obj) { }
- public void visitDADD(DADD obj) { }
- public void visitINVOKESPECIAL(INVOKESPECIAL obj) { }
- public void visitIAND(IAND obj) { }
- public void visitPUTFIELD(PUTFIELD obj) { }
- public void visitILOAD(ILOAD obj) { }
- public void visitDLOAD(DLOAD obj) { }
- public void visitDCONST(DCONST obj) { }
- public void visitNEW(NEW obj) { }
- public void visitIFNULL(IFNULL obj) { }
- public void visitLSUB(LSUB obj) { }
- public void visitL2I(L2I obj) { }
- public void visitISHR(ISHR obj) { }
- public void visitTABLESWITCH(TABLESWITCH obj) { }
- public void visitIINC(IINC obj) { }
- public void visitDRETURN(DRETURN obj) { }
- public void visitFSTORE(FSTORE obj) { }
- public void visitDASTORE(DASTORE obj) { }
- public void visitIALOAD(IALOAD obj) { }
- public void visitDDIV(DDIV obj) { }
- public void visitIF_ICMPGE(IF_ICMPGE obj) { }
- public void visitLAND(LAND obj) { }
- public void visitIDIV(IDIV obj) { }
- public void visitLOR(LOR obj) { }
- public void visitCASTORE(CASTORE obj) { }
- public void visitFREM(FREM obj) { }
- public void visitLDC(LDC obj) { }
- public void visitBIPUSH(BIPUSH obj) { }
- public void visitDSTORE(DSTORE obj) { }
- public void visitF2L(F2L obj) { }
- public void visitFMUL(FMUL obj) { }
- public void visitLLOAD(LLOAD obj) { }
- public void visitJSR(JSR obj) { }
- public void visitFSUB(FSUB obj) { }
- public void visitSASTORE(SASTORE obj) { }
- public void visitALOAD(ALOAD obj) { }
- public void visitDUP2_X2(DUP2_X2 obj) { }
- public void visitRETURN(RETURN obj) { }
- public void visitDALOAD(DALOAD obj) { }
- public void visitSIPUSH(SIPUSH obj) { }
- public void visitDSUB(DSUB obj) { }
- public void visitL2F(L2F obj) { }
- public void visitIF_ICMPGT(IF_ICMPGT obj) { }
- public void visitF2D(F2D obj) { }
- public void visitI2L(I2L obj) { }
- public void visitIF_ACMPNE(IF_ACMPNE obj) { }
- public void visitPOP(POP obj) { }
- public void visitI2S(I2S obj) { }
- public void visitIFEQ(IFEQ obj) { }
- public void visitSWAP(SWAP obj) { }
- public void visitIOR(IOR obj) { }
- public void visitIREM(IREM obj) { }
- public void visitIASTORE(IASTORE obj) { }
- public void visitNEWARRAY(NEWARRAY obj) { }
- public void visitINVOKEINTERFACE(INVOKEINTERFACE obj) { }
- public void visitINEG(INEG obj) { }
- public void visitLCMP(LCMP obj) { }
- public void visitJSR_W(JSR_W obj) { }
- public void visitMULTIANEWARRAY(MULTIANEWARRAY obj) { }
- public void visitDUP_X2(DUP_X2 obj) { }
- public void visitSALOAD(SALOAD obj) { }
- public void visitIFNONNULL(IFNONNULL obj) { }
- public void visitDMUL(DMUL obj) { }
- public void visitIFNE(IFNE obj) { }
- public void visitIF_ICMPLE(IF_ICMPLE obj) { }
- public void visitLDC2_W(LDC2_W obj) { }
- public void visitGETFIELD(GETFIELD obj) { }
- public void visitLADD(LADD obj) { }
- public void visitNOP(NOP obj) { }
- public void visitFALOAD(FALOAD obj) { }
- public void visitINSTANCEOF(INSTANCEOF obj) { }
- public void visitIFLE(IFLE obj) { }
- public void visitLXOR(LXOR obj) { }
- public void visitLRETURN(LRETURN obj) { }
- public void visitFCONST(FCONST obj) { }
- public void visitIUSHR(IUSHR obj) { }
- public void visitBALOAD(BALOAD obj) { }
- public void visitDUP2(DUP2 obj) { }
- public void visitIF_ACMPEQ(IF_ACMPEQ obj) { }
- public void visitIMPDEP1(IMPDEP1 obj) { }
- public void visitMONITORENTER(MONITORENTER obj) { }
- public void visitLSHL(LSHL obj) { }
- public void visitDCMPG(DCMPG obj) { }
- public void visitD2L(D2L obj) { }
- public void visitIMPDEP2(IMPDEP2 obj) { }
- public void visitL2D(L2D obj) { }
- public void visitRET(RET obj) { }
- public void visitIFGT(IFGT obj) { }
- public void visitIXOR(IXOR obj) { }
- public void visitINVOKEVIRTUAL(INVOKEVIRTUAL obj) { }
- public void visitFASTORE(FASTORE obj) { }
- public void visitIRETURN(IRETURN obj) { }
- public void visitIF_ICMPNE(IF_ICMPNE obj) { }
- public void visitFLOAD(FLOAD obj) { }
- public void visitLDIV(LDIV obj) { }
- public void visitPUTSTATIC(PUTSTATIC obj) { }
- public void visitAALOAD(AALOAD obj) { }
- public void visitD2I(D2I obj) { }
- public void visitIF_ICMPEQ(IF_ICMPEQ obj) { }
- public void visitAASTORE(AASTORE obj) { }
- public void visitARETURN(ARETURN obj) { }
- public void visitDUP2_X1(DUP2_X1 obj) { }
- public void visitFNEG(FNEG obj) { }
- public void visitGOTO_W(GOTO_W obj) { }
- public void visitD2F(D2F obj) { }
- public void visitGOTO(GOTO obj) { }
- public void visitISUB(ISUB obj) { }
- public void visitF2I(F2I obj) { }
- public void visitDNEG(DNEG obj) { }
- public void visitICONST(ICONST obj) { }
- public void visitFDIV(FDIV obj) { }
- public void visitI2B(I2B obj) { }
- public void visitLNEG(LNEG obj) { }
- public void visitLREM(LREM obj) { }
- public void visitIMUL(IMUL obj) { }
- public void visitIADD(IADD obj) { }
- public void visitLSHR(LSHR obj) { }
- public void visitLOOKUPSWITCH(LOOKUPSWITCH obj) { }
- public void visitDUP_X1(DUP_X1 obj) { }
- public void visitFCMPL(FCMPL obj) { }
- public void visitI2C(I2C obj) { }
- public void visitLMUL(LMUL obj) { }
- public void visitLUSHR(LUSHR obj) { }
- public void visitISHL(ISHL obj) { }
- public void visitLALOAD(LALOAD obj) { }
- public void visitASTORE(ASTORE obj) { }
- public void visitANEWARRAY(ANEWARRAY obj) { }
- public void visitFRETURN(FRETURN obj) { }
- public void visitFADD(FADD obj) { }
- public void visitBREAKPOINT(BREAKPOINT obj) { }
+
+ public void visitStackInstruction( StackInstruction obj ) {
+ }
+
+
+ public void visitLocalVariableInstruction( LocalVariableInstruction obj ) {
+ }
+
+
+ public void visitBranchInstruction( BranchInstruction obj ) {
+ }
+
+
+ public void visitLoadClass( LoadClass obj ) {
+ }
+
+
+ public void visitFieldInstruction( FieldInstruction obj ) {
+ }
+
+
+ public void visitIfInstruction( IfInstruction obj ) {
+ }
+
+
+ public void visitConversionInstruction( ConversionInstruction obj ) {
+ }
+
+
+ public void visitPopInstruction( PopInstruction obj ) {
+ }
+
+
+ public void visitJsrInstruction( JsrInstruction obj ) {
+ }
+
+
+ public void visitGotoInstruction( GotoInstruction obj ) {
+ }
+
+
+ public void visitStoreInstruction( StoreInstruction obj ) {
+ }
+
+
+ public void visitTypedInstruction( TypedInstruction obj ) {
+ }
+
+
+ public void visitSelect( Select obj ) {
+ }
+
+
+ public void visitUnconditionalBranch( UnconditionalBranch obj ) {
+ }
+
+
+ public void visitPushInstruction( PushInstruction obj ) {
+ }
+
+
+ public void visitArithmeticInstruction( ArithmeticInstruction obj ) {
+ }
+
+
+ public void visitCPInstruction( CPInstruction obj ) {
+ }
+
+
+ public void visitInvokeInstruction( InvokeInstruction obj ) {
+ }
+
+
+ public void visitArrayInstruction( ArrayInstruction obj ) {
+ }
+
+
+ public void visitAllocationInstruction( AllocationInstruction obj ) {
+ }
+
+
+ public void visitReturnInstruction( ReturnInstruction obj ) {
+ }
+
+
+ public void visitFieldOrMethod( FieldOrMethod obj ) {
+ }
+
+
+ public void visitConstantPushInstruction( ConstantPushInstruction obj ) {
+ }
+
+
+ public void visitExceptionThrower( ExceptionThrower obj ) {
+ }
+
+
+ public void visitLoadInstruction( LoadInstruction obj ) {
+ }
+
+
+ public void visitVariableLengthInstruction( VariableLengthInstruction obj ) {
+ }
+
+
+ public void visitStackProducer( StackProducer obj ) {
+ }
+
+
+ public void visitStackConsumer( StackConsumer obj ) {
+ }
+
+
+ public void visitACONST_NULL( ACONST_NULL obj ) {
+ }
+
+
+ public void visitGETSTATIC( GETSTATIC obj ) {
+ }
+
+
+ public void visitIF_ICMPLT( IF_ICMPLT obj ) {
+ }
+
+
+ public void visitMONITOREXIT( MONITOREXIT obj ) {
+ }
+
+
+ public void visitIFLT( IFLT obj ) {
+ }
+
+
+ public void visitLSTORE( LSTORE obj ) {
+ }
+
+
+ public void visitPOP2( POP2 obj ) {
+ }
+
+
+ public void visitBASTORE( BASTORE obj ) {
+ }
+
+
+ public void visitISTORE( ISTORE obj ) {
+ }
+
+
+ public void visitCHECKCAST( CHECKCAST obj ) {
+ }
+
+
+ public void visitFCMPG( FCMPG obj ) {
+ }
+
+
+ public void visitI2F( I2F obj ) {
+ }
+
+
+ public void visitATHROW( ATHROW obj ) {
+ }
+
+
+ public void visitDCMPL( DCMPL obj ) {
+ }
+
+
+ public void visitARRAYLENGTH( ARRAYLENGTH obj ) {
+ }
+
+
+ public void visitDUP( DUP obj ) {
+ }
+
+
+ public void visitINVOKESTATIC( INVOKESTATIC obj ) {
+ }
+
+
+ public void visitLCONST( LCONST obj ) {
+ }
+
+
+ public void visitDREM( DREM obj ) {
+ }
+
+
+ public void visitIFGE( IFGE obj ) {
+ }
+
+
+ public void visitCALOAD( CALOAD obj ) {
+ }
+
+
+ public void visitLASTORE( LASTORE obj ) {
+ }
+
+
+ public void visitI2D( I2D obj ) {
+ }
+
+
+ public void visitDADD( DADD obj ) {
+ }
+
+
+ public void visitINVOKESPECIAL( INVOKESPECIAL obj ) {
+ }
+
+
+ public void visitIAND( IAND obj ) {
+ }
+
+
+ public void visitPUTFIELD( PUTFIELD obj ) {
+ }
+
+
+ public void visitILOAD( ILOAD obj ) {
+ }
+
+
+ public void visitDLOAD( DLOAD obj ) {
+ }
+
+
+ public void visitDCONST( DCONST obj ) {
+ }
+
+
+ public void visitNEW( NEW obj ) {
+ }
+
+
+ public void visitIFNULL( IFNULL obj ) {
+ }
+
+
+ public void visitLSUB( LSUB obj ) {
+ }
+
+
+ public void visitL2I( L2I obj ) {
+ }
+
+
+ public void visitISHR( ISHR obj ) {
+ }
+
+
+ public void visitTABLESWITCH( TABLESWITCH obj ) {
+ }
+
+
+ public void visitIINC( IINC obj ) {
+ }
+
+
+ public void visitDRETURN( DRETURN obj ) {
+ }
+
+
+ public void visitFSTORE( FSTORE obj ) {
+ }
+
+
+ public void visitDASTORE( DASTORE obj ) {
+ }
+
+
+ public void visitIALOAD( IALOAD obj ) {
+ }
+
+
+ public void visitDDIV( DDIV obj ) {
+ }
+
+
+ public void visitIF_ICMPGE( IF_ICMPGE obj ) {
+ }
+
+
+ public void visitLAND( LAND obj ) {
+ }
+
+
+ public void visitIDIV( IDIV obj ) {
+ }
+
+
+ public void visitLOR( LOR obj ) {
+ }
+
+
+ public void visitCASTORE( CASTORE obj ) {
+ }
+
+
+ public void visitFREM( FREM obj ) {
+ }
+
+
+ public void visitLDC( LDC obj ) {
+ }
+
+
+ public void visitBIPUSH( BIPUSH obj ) {
+ }
+
+
+ public void visitDSTORE( DSTORE obj ) {
+ }
+
+
+ public void visitF2L( F2L obj ) {
+ }
+
+
+ public void visitFMUL( FMUL obj ) {
+ }
+
+
+ public void visitLLOAD( LLOAD obj ) {
+ }
+
+
+ public void visitJSR( JSR obj ) {
+ }
+
+
+ public void visitFSUB( FSUB obj ) {
+ }
+
+
+ public void visitSASTORE( SASTORE obj ) {
+ }
+
+
+ public void visitALOAD( ALOAD obj ) {
+ }
+
+
+ public void visitDUP2_X2( DUP2_X2 obj ) {
+ }
+
+
+ public void visitRETURN( RETURN obj ) {
+ }
+
+
+ public void visitDALOAD( DALOAD obj ) {
+ }
+
+
+ public void visitSIPUSH( SIPUSH obj ) {
+ }
+
+
+ public void visitDSUB( DSUB obj ) {
+ }
+
+
+ public void visitL2F( L2F obj ) {
+ }
+
+
+ public void visitIF_ICMPGT( IF_ICMPGT obj ) {
+ }
+
+
+ public void visitF2D( F2D obj ) {
+ }
+
+
+ public void visitI2L( I2L obj ) {
+ }
+
+
+ public void visitIF_ACMPNE( IF_ACMPNE obj ) {
+ }
+
+
+ public void visitPOP( POP obj ) {
+ }
+
+
+ public void visitI2S( I2S obj ) {
+ }
+
+
+ public void visitIFEQ( IFEQ obj ) {
+ }
+
+
+ public void visitSWAP( SWAP obj ) {
+ }
+
+
+ public void visitIOR( IOR obj ) {
+ }
+
+
+ public void visitIREM( IREM obj ) {
+ }
+
+
+ public void visitIASTORE( IASTORE obj ) {
+ }
+
+
+ public void visitNEWARRAY( NEWARRAY obj ) {
+ }
+
+
+ public void visitINVOKEINTERFACE( INVOKEINTERFACE obj ) {
+ }
+
+
+ public void visitINEG( INEG obj ) {
+ }
+
+
+ public void visitLCMP( LCMP obj ) {
+ }
+
+
+ public void visitJSR_W( JSR_W obj ) {
+ }
+
+
+ public void visitMULTIANEWARRAY( MULTIANEWARRAY obj ) {
+ }
+
+
+ public void visitDUP_X2( DUP_X2 obj ) {
+ }
+
+
+ public void visitSALOAD( SALOAD obj ) {
+ }
+
+
+ public void visitIFNONNULL( IFNONNULL obj ) {
+ }
+
+
+ public void visitDMUL( DMUL obj ) {
+ }
+
+
+ public void visitIFNE( IFNE obj ) {
+ }
+
+
+ public void visitIF_ICMPLE( IF_ICMPLE obj ) {
+ }
+
+
+ public void visitLDC2_W( LDC2_W obj ) {
+ }
+
+
+ public void visitGETFIELD( GETFIELD obj ) {
+ }
+
+
+ public void visitLADD( LADD obj ) {
+ }
+
+
+ public void visitNOP( NOP obj ) {
+ }
+
+
+ public void visitFALOAD( FALOAD obj ) {
+ }
+
+
+ public void visitINSTANCEOF( INSTANCEOF obj ) {
+ }
+
+
+ public void visitIFLE( IFLE obj ) {
+ }
+
+
+ public void visitLXOR( LXOR obj ) {
+ }
+
+
+ public void visitLRETURN( LRETURN obj ) {
+ }
+
+
+ public void visitFCONST( FCONST obj ) {
+ }
+
+
+ public void visitIUSHR( IUSHR obj ) {
+ }
+
+
+ public void visitBALOAD( BALOAD obj ) {
+ }
+
+
+ public void visitDUP2( DUP2 obj ) {
+ }
+
+
+ public void visitIF_ACMPEQ( IF_ACMPEQ obj ) {
+ }
+
+
+ public void visitIMPDEP1( IMPDEP1 obj ) {
+ }
+
+
+ public void visitMONITORENTER( MONITORENTER obj ) {
+ }
+
+
+ public void visitLSHL( LSHL obj ) {
+ }
+
+
+ public void visitDCMPG( DCMPG obj ) {
+ }
+
+
+ public void visitD2L( D2L obj ) {
+ }
+
+
+ public void visitIMPDEP2( IMPDEP2 obj ) {
+ }
+
+
+ public void visitL2D( L2D obj ) {
+ }
+
+
+ public void visitRET( RET obj ) {
+ }
+
+
+ public void visitIFGT( IFGT obj ) {
+ }
+
+
+ public void visitIXOR( IXOR obj ) {
+ }
+
+
+ public void visitINVOKEVIRTUAL( INVOKEVIRTUAL obj ) {
+ }
+
+
+ public void visitFASTORE( FASTORE obj ) {
+ }
+
+
+ public void visitIRETURN( IRETURN obj ) {
+ }
+
+
+ public void visitIF_ICMPNE( IF_ICMPNE obj ) {
+ }
+
+
+ public void visitFLOAD( FLOAD obj ) {
+ }
+
+
+ public void visitLDIV( LDIV obj ) {
+ }
+
+
+ public void visitPUTSTATIC( PUTSTATIC obj ) {
+ }
+
+
+ public void visitAALOAD( AALOAD obj ) {
+ }
+
+
+ public void visitD2I( D2I obj ) {
+ }
+
+
+ public void visitIF_ICMPEQ( IF_ICMPEQ obj ) {
+ }
+
+
+ public void visitAASTORE( AASTORE obj ) {
+ }
+
+
+ public void visitARETURN( ARETURN obj ) {
+ }
+
+
+ public void visitDUP2_X1( DUP2_X1 obj ) {
+ }
+
+
+ public void visitFNEG( FNEG obj ) {
+ }
+
+
+ public void visitGOTO_W( GOTO_W obj ) {
+ }
+
+
+ public void visitD2F( D2F obj ) {
+ }
+
+
+ public void visitGOTO( GOTO obj ) {
+ }
+
+
+ public void visitISUB( ISUB obj ) {
+ }
+
+
+ public void visitF2I( F2I obj ) {
+ }
+
+
+ public void visitDNEG( DNEG obj ) {
+ }
+
+
+ public void visitICONST( ICONST obj ) {
+ }
+
+
+ public void visitFDIV( FDIV obj ) {
+ }
+
+
+ public void visitI2B( I2B obj ) {
+ }
+
+
+ public void visitLNEG( LNEG obj ) {
+ }
+
+
+ public void visitLREM( LREM obj ) {
+ }
+
+
+ public void visitIMUL( IMUL obj ) {
+ }
+
+
+ public void visitIADD( IADD obj ) {
+ }
+
+
+ public void visitLSHR( LSHR obj ) {
+ }
+
+
+ public void visitLOOKUPSWITCH( LOOKUPSWITCH obj ) {
+ }
+
+
+ public void visitDUP_X1( DUP_X1 obj ) {
+ }
+
+
+ public void visitFCMPL( FCMPL obj ) {
+ }
+
+
+ public void visitI2C( I2C obj ) {
+ }
+
+
+ public void visitLMUL( LMUL obj ) {
+ }
+
+
+ public void visitLUSHR( LUSHR obj ) {
+ }
+
+
+ public void visitISHL( ISHL obj ) {
+ }
+
+
+ public void visitLALOAD( LALOAD obj ) {
+ }
+
+
+ public void visitASTORE( ASTORE obj ) {
+ }
+
+
+ public void visitANEWARRAY( ANEWARRAY obj ) {
+ }
+
+
+ public void visitFRETURN( FRETURN obj ) {
+ }
+
+
+ public void visitFADD( FADD obj ) {
+ }
+
+
+ public void visitBREAKPOINT( BREAKPOINT obj ) {
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/ExceptionThrower.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/ExceptionThrower.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/ExceptionThrower.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/ExceptionThrower.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* Denote an instruction that may throw a run-time or a linking
* exception (or both) during execution. This is not quite the truth
@@ -38,5 +37,6 @@
* @author Enver Haase
*/
public interface ExceptionThrower {
- public java.lang.Class[] getExceptions();
+
+ public java.lang.Class[] getExceptions();
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/F2D.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/F2D.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/F2D.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/F2D.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* F2D - Convert float to double
* <PRE>Stack: ..., value -> ..., result.word1, result.word2</PRE>
@@ -25,26 +24,27 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class F2D extends ConversionInstruction {
- /** Convert float to double
- */
- public F2D() {
- super(org.apache.bcel.Constants.F2D);
- }
+
+ /** Convert float to double
+ */
+ public F2D() {
+ super(org.apache.bcel.Constants.F2D);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitTypedInstruction(this);
- v.visitStackProducer(this);
- v.visitStackConsumer(this);
- v.visitConversionInstruction(this);
- v.visitF2D(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitTypedInstruction(this);
+ v.visitStackProducer(this);
+ v.visitStackConsumer(this);
+ v.visitConversionInstruction(this);
+ v.visitF2D(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/F2I.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/F2I.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/F2I.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/F2I.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* F2I - Convert float to int
* <PRE>Stack: ..., value -> ..., result</PRE>
@@ -25,26 +24,27 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class F2I extends ConversionInstruction {
- /** Convert float to int
- */
- public F2I() {
- super(org.apache.bcel.Constants.F2I);
- }
+
+ /** Convert float to int
+ */
+ public F2I() {
+ super(org.apache.bcel.Constants.F2I);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitTypedInstruction(this);
- v.visitStackProducer(this);
- v.visitStackConsumer(this);
- v.visitConversionInstruction(this);
- v.visitF2I(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitTypedInstruction(this);
+ v.visitStackProducer(this);
+ v.visitStackConsumer(this);
+ v.visitConversionInstruction(this);
+ v.visitF2I(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/F2L.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/F2L.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/F2L.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/F2L.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* F2L - Convert float to long
* <PRE>Stack: ..., value -> ..., result.word1, result.word2</PRE>
@@ -25,26 +24,27 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class F2L extends ConversionInstruction {
- /** Convert float to long
- */
- public F2L() {
- super(org.apache.bcel.Constants.F2L);
- }
+
+ /** Convert float to long
+ */
+ public F2L() {
+ super(org.apache.bcel.Constants.F2L);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitTypedInstruction(this);
- v.visitStackProducer(this);
- v.visitStackConsumer(this);
- v.visitConversionInstruction(this);
- v.visitF2L(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitTypedInstruction(this);
+ v.visitStackProducer(this);
+ v.visitStackConsumer(this);
+ v.visitConversionInstruction(this);
+ v.visitF2L(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FADD.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FADD.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FADD.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FADD.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* FADD - Add floats
* <PRE>Stack: ..., value1, value2 -> result</PRE>
@@ -25,26 +24,27 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class FADD extends ArithmeticInstruction {
- /** Add floats
- */
- public FADD() {
- super(org.apache.bcel.Constants.FADD);
- }
+
+ /** Add floats
+ */
+ public FADD() {
+ super(org.apache.bcel.Constants.FADD);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitTypedInstruction(this);
- v.visitStackProducer(this);
- v.visitStackConsumer(this);
- v.visitArithmeticInstruction(this);
- v.visitFADD(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitTypedInstruction(this);
+ v.visitStackProducer(this);
+ v.visitStackConsumer(this);
+ v.visitArithmeticInstruction(this);
+ v.visitFADD(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FALOAD.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FALOAD.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FALOAD.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FALOAD.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* FALOAD - Load float from array
* <PRE>Stack: ..., arrayref, index -> ..., value</PRE>
@@ -25,26 +24,27 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class FALOAD extends ArrayInstruction implements StackProducer {
- /** Load float from array
- */
- public FALOAD() {
- super(org.apache.bcel.Constants.FALOAD);
- }
+
+ /** Load float from array
+ */
+ public FALOAD() {
+ super(org.apache.bcel.Constants.FALOAD);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitStackProducer(this);
- v.visitExceptionThrower(this);
- v.visitTypedInstruction(this);
- v.visitArrayInstruction(this);
- v.visitFALOAD(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitStackProducer(this);
+ v.visitExceptionThrower(this);
+ v.visitTypedInstruction(this);
+ v.visitArrayInstruction(this);
+ v.visitFALOAD(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FASTORE.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FASTORE.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FASTORE.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FASTORE.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* FASTORE - Store into float array
* <PRE>Stack: ..., arrayref, index, value -> ...</PRE>
@@ -25,26 +24,27 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class FASTORE extends ArrayInstruction implements StackConsumer {
- /** Store float into array
- */
- public FASTORE() {
- super(org.apache.bcel.Constants.FASTORE);
- }
+
+ /** Store float into array
+ */
+ public FASTORE() {
+ super(org.apache.bcel.Constants.FASTORE);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitStackConsumer(this);
- v.visitExceptionThrower(this);
- v.visitTypedInstruction(this);
- v.visitArrayInstruction(this);
- v.visitFASTORE(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitStackConsumer(this);
+ v.visitExceptionThrower(this);
+ v.visitTypedInstruction(this);
+ v.visitArrayInstruction(this);
+ v.visitFASTORE(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FCMPG.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FCMPG.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FCMPG.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FCMPG.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* FCMPG - Compare floats: value1 > value2
* <PRE>Stack: ..., value1, value2 -> ..., result</PRE>
@@ -24,31 +23,32 @@
* @version $Id$
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
-public class FCMPG extends Instruction
- implements TypedInstruction, StackProducer, StackConsumer {
- public FCMPG() {
- super(org.apache.bcel.Constants.FCMPG, (short)1);
- }
-
- /** @return Type.FLOAT
- */
- public Type getType(ConstantPoolGen cp) {
- return Type.FLOAT;
- }
-
-
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitTypedInstruction(this);
- v.visitStackProducer(this);
- v.visitStackConsumer(this);
- v.visitFCMPG(this);
- }
+public class FCMPG extends Instruction implements TypedInstruction, StackProducer, StackConsumer {
+
+ public FCMPG() {
+ super(org.apache.bcel.Constants.FCMPG, (short) 1);
+ }
+
+
+ /** @return Type.FLOAT
+ */
+ public Type getType( ConstantPoolGen cp ) {
+ return Type.FLOAT;
+ }
+
+
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitTypedInstruction(this);
+ v.visitStackProducer(this);
+ v.visitStackConsumer(this);
+ v.visitFCMPG(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FCMPL.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FCMPL.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FCMPL.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FCMPL.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* FCMPL - Compare floats: value1 < value2
* <PRE>Stack: ..., value1, value2 -> ..., result</PRE>
@@ -24,31 +23,32 @@
* @version $Id$
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
-public class FCMPL extends Instruction
- implements TypedInstruction, StackProducer, StackConsumer {
- public FCMPL() {
- super(org.apache.bcel.Constants.FCMPL, (short)1);
- }
-
- /** @return Type.FLOAT
- */
- public Type getType(ConstantPoolGen cp) {
- return Type.FLOAT;
- }
-
-
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitTypedInstruction(this);
- v.visitStackProducer(this);
- v.visitStackConsumer(this);
- v.visitFCMPL(this);
- }
+public class FCMPL extends Instruction implements TypedInstruction, StackProducer, StackConsumer {
+
+ public FCMPL() {
+ super(org.apache.bcel.Constants.FCMPL, (short) 1);
+ }
+
+
+ /** @return Type.FLOAT
+ */
+ public Type getType( ConstantPoolGen cp ) {
+ return Type.FLOAT;
+ }
+
+
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitTypedInstruction(this);
+ v.visitStackProducer(this);
+ v.visitStackConsumer(this);
+ v.visitFCMPL(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FCONST.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FCONST.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FCONST.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FCONST.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* FCONST - Push 0.0, 1.0 or 2.0, other values cause an exception
*
@@ -25,52 +24,59 @@
* @version $Id$
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
-public class FCONST extends Instruction
- implements ConstantPushInstruction, TypedInstruction {
- private float value;
-
- /**
- * Empty constructor needed for the Class.newInstance() statement in
- * Instruction.readInstruction(). Not to be used otherwise.
- */
- FCONST() {}
-
- public FCONST(float f) {
- super(org.apache.bcel.Constants.FCONST_0, (short)1);
-
- if(f == 0.0)
- opcode = org.apache.bcel.Constants.FCONST_0;
- else if(f == 1.0)
- opcode = org.apache.bcel.Constants.FCONST_1;
- else if(f == 2.0)
- opcode = org.apache.bcel.Constants.FCONST_2;
- else
- throw new ClassGenException("FCONST can be used only for 0.0, 1.0 and 2.0: " + f);
-
- value = f;
- }
-
- public Number getValue() { return new Float(value); }
-
- /** @return Type.FLOAT
- */
- public Type getType(ConstantPoolGen cp) {
- return Type.FLOAT;
- }
-
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitPushInstruction(this);
- v.visitStackProducer(this);
- v.visitTypedInstruction(this);
- v.visitConstantPushInstruction(this);
- v.visitFCONST(this);
- }
+public class FCONST extends Instruction implements ConstantPushInstruction, TypedInstruction {
+
+ private float value;
+
+
+ /**
+ * Empty constructor needed for the Class.newInstance() statement in
+ * Instruction.readInstruction(). Not to be used otherwise.
+ */
+ FCONST() {
+ }
+
+
+ public FCONST(float f) {
+ super(org.apache.bcel.Constants.FCONST_0, (short) 1);
+ if (f == 0.0) {
+ opcode = org.apache.bcel.Constants.FCONST_0;
+ } else if (f == 1.0) {
+ opcode = org.apache.bcel.Constants.FCONST_1;
+ } else if (f == 2.0) {
+ opcode = org.apache.bcel.Constants.FCONST_2;
+ } else {
+ throw new ClassGenException("FCONST can be used only for 0.0, 1.0 and 2.0: " + f);
+ }
+ value = f;
+ }
+
+
+ public Number getValue() {
+ return new Float(value);
+ }
+
+
+ /** @return Type.FLOAT
+ */
+ public Type getType( ConstantPoolGen cp ) {
+ return Type.FLOAT;
+ }
+
+
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitPushInstruction(this);
+ v.visitStackProducer(this);
+ v.visitTypedInstruction(this);
+ v.visitConstantPushInstruction(this);
+ v.visitFCONST(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FDIV.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FDIV.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FDIV.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FDIV.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* FDIV - Divide floats
* <PRE>Stack: ..., value1, value2 -> result</PRE>
@@ -25,26 +24,27 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class FDIV extends ArithmeticInstruction {
- /** Divide floats
- */
- public FDIV() {
- super(org.apache.bcel.Constants.FDIV);
- }
+
+ /** Divide floats
+ */
+ public FDIV() {
+ super(org.apache.bcel.Constants.FDIV);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitTypedInstruction(this);
- v.visitStackProducer(this);
- v.visitStackConsumer(this);
- v.visitArithmeticInstruction(this);
- v.visitFDIV(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitTypedInstruction(this);
+ v.visitStackProducer(this);
+ v.visitStackConsumer(this);
+ v.visitArithmeticInstruction(this);
+ v.visitFDIV(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FLOAD.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FLOAD.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FLOAD.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FLOAD.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* FLOAD - Load float from local variable
* <PRE>Stack ... -> ..., result</PRE>
@@ -25,31 +24,34 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class FLOAD extends LoadInstruction {
- /**
- * Empty constructor needed for the Class.newInstance() statement in
- * Instruction.readInstruction(). Not to be used otherwise.
- */
- FLOAD() {
- super(org.apache.bcel.Constants.FLOAD, org.apache.bcel.Constants.FLOAD_0);
- }
-
- /** Load float from local variable
- * @param n index of local variable
- */
- public FLOAD(int n) {
- super(org.apache.bcel.Constants.FLOAD, org.apache.bcel.Constants.FLOAD_0, n);
- }
-
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- super.accept(v);
- v.visitFLOAD(this);
- }
+
+ /**
+ * Empty constructor needed for the Class.newInstance() statement in
+ * Instruction.readInstruction(). Not to be used otherwise.
+ */
+ FLOAD() {
+ super(org.apache.bcel.Constants.FLOAD, org.apache.bcel.Constants.FLOAD_0);
+ }
+
+
+ /** Load float from local variable
+ * @param n index of local variable
+ */
+ public FLOAD(int n) {
+ super(org.apache.bcel.Constants.FLOAD, org.apache.bcel.Constants.FLOAD_0, n);
+ }
+
+
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ super.accept(v);
+ v.visitFLOAD(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FMUL.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FMUL.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FMUL.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FMUL.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* FMUL - Multiply floats
* <PRE>Stack: ..., value1, value2 -> result</PRE>
@@ -25,26 +24,27 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class FMUL extends ArithmeticInstruction {
- /** Multiply floats
- */
- public FMUL() {
- super(org.apache.bcel.Constants.FMUL);
- }
+
+ /** Multiply floats
+ */
+ public FMUL() {
+ super(org.apache.bcel.Constants.FMUL);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitTypedInstruction(this);
- v.visitStackProducer(this);
- v.visitStackConsumer(this);
- v.visitArithmeticInstruction(this);
- v.visitFMUL(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitTypedInstruction(this);
+ v.visitStackProducer(this);
+ v.visitStackConsumer(this);
+ v.visitArithmeticInstruction(this);
+ v.visitFMUL(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FNEG.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FNEG.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FNEG.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FNEG.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* FNEG - Negate float
* <PRE>Stack: ..., value -> ..., result</PRE>
@@ -25,24 +24,25 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class FNEG extends ArithmeticInstruction {
- public FNEG() {
- super(org.apache.bcel.Constants.FNEG);
- }
+
+ public FNEG() {
+ super(org.apache.bcel.Constants.FNEG);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitTypedInstruction(this);
- v.visitStackProducer(this);
- v.visitStackConsumer(this);
- v.visitArithmeticInstruction(this);
- v.visitFNEG(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitTypedInstruction(this);
+ v.visitStackProducer(this);
+ v.visitStackConsumer(this);
+ v.visitArithmeticInstruction(this);
+ v.visitFNEG(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FREM.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FREM.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FREM.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FREM.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* FREM - Remainder of floats
* <PRE>Stack: ..., value1, value2 -> result</PRE>
@@ -25,26 +24,27 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class FREM extends ArithmeticInstruction {
- /** Remainder of floats
- */
- public FREM() {
- super(org.apache.bcel.Constants.FREM);
- }
+
+ /** Remainder of floats
+ */
+ public FREM() {
+ super(org.apache.bcel.Constants.FREM);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitTypedInstruction(this);
- v.visitStackProducer(this);
- v.visitStackConsumer(this);
- v.visitArithmeticInstruction(this);
- v.visitFREM(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitTypedInstruction(this);
+ v.visitStackProducer(this);
+ v.visitStackConsumer(this);
+ v.visitArithmeticInstruction(this);
+ v.visitFREM(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FRETURN.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FRETURN.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FRETURN.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FRETURN.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* FRETURN - Return float from method
* <PRE>Stack: ..., value -> <empty></PRE>
@@ -25,26 +24,27 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class FRETURN extends ReturnInstruction {
- /** Return float from method
- */
- public FRETURN() {
- super(org.apache.bcel.Constants.FRETURN);
- }
+
+ /** Return float from method
+ */
+ public FRETURN() {
+ super(org.apache.bcel.Constants.FRETURN);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitExceptionThrower(this);
- v.visitTypedInstruction(this);
- v.visitStackConsumer(this);
- v.visitReturnInstruction(this);
- v.visitFRETURN(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitExceptionThrower(this);
+ v.visitTypedInstruction(this);
+ v.visitStackConsumer(this);
+ v.visitReturnInstruction(this);
+ v.visitFRETURN(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FSTORE.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FSTORE.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FSTORE.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FSTORE.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* FSTORE - Store float into local variable
* <PRE>Stack: ..., value -> ... </PRE>
@@ -25,31 +24,34 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class FSTORE extends StoreInstruction {
- /**
- * Empty constructor needed for the Class.newInstance() statement in
- * Instruction.readInstruction(). Not to be used otherwise.
- */
- FSTORE() {
- super(org.apache.bcel.Constants.FSTORE, org.apache.bcel.Constants.FSTORE_0);
- }
-
- /** Store float into local variable
- * @param n index of local variable
- */
- public FSTORE(int n) {
- super(org.apache.bcel.Constants.FSTORE, org.apache.bcel.Constants.FSTORE_0, n);
- }
-
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- super.accept(v);
- v.visitFSTORE(this);
- }
+
+ /**
+ * Empty constructor needed for the Class.newInstance() statement in
+ * Instruction.readInstruction(). Not to be used otherwise.
+ */
+ FSTORE() {
+ super(org.apache.bcel.Constants.FSTORE, org.apache.bcel.Constants.FSTORE_0);
+ }
+
+
+ /** Store float into local variable
+ * @param n index of local variable
+ */
+ public FSTORE(int n) {
+ super(org.apache.bcel.Constants.FSTORE, org.apache.bcel.Constants.FSTORE_0, n);
+ }
+
+
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ super.accept(v);
+ v.visitFSTORE(this);
+ }
}
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FSUB.java
URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FSUB.java?rev=386056&r1=386055&r2=386056&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FSUB.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FSUB.java Wed Mar 15 03:31:56 2006
@@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- */
+ */
package org.apache.bcel.generic;
-
/**
* FSUB - Substract floats
* <PRE>Stack: ..., value1, value2 -> result</PRE>
@@ -25,26 +24,27 @@
* @author <A HREF="mailto:[email protected]">M. Dahm</A>
*/
public class FSUB extends ArithmeticInstruction {
- /** Substract floats
- */
- public FSUB() {
- super(org.apache.bcel.Constants.FSUB);
- }
+
+ /** Substract floats
+ */
+ public FSUB() {
+ super(org.apache.bcel.Constants.FSUB);
+ }
- /**
- * Call corresponding visitor method(s). The order is:
- * Call visitor methods of implemented interfaces first, then
- * call methods according to the class hierarchy in descending order,
- * i.e., the most specific visitXXX() call comes last.
- *
- * @param v Visitor object
- */
- public void accept(Visitor v) {
- v.visitTypedInstruction(this);
- v.visitStackProducer(this);
- v.visitStackConsumer(this);
- v.visitArithmeticInstruction(this);
- v.visitFSUB(this);
- }
+ /**
+ * Call corresponding visitor method(s). The order is:
+ * Call visitor methods of implemented interfaces first, then
+ * call methods according to the class hierarchy in descending order,
+ * i.e., the most specific visitXXX() call comes last.
+ *
+ * @param v Visitor object
+ */
+ public void accept( Visitor v ) {
+ v.visitTypedInstruction(this);
+ v.visitStackProducer(this);
+ v.visitStackConsumer(this);
+ v.visitArithmeticInstruction(this);
+ v.visitFSUB(this);
+ }
}
lmpx.com only provides a reader for public news (NNTP) servers. It is not
affiliated with the servers or forums shown here and is not responsible for
the content of articles, which is written by their respective authors.