1 package com.sun.org.apache.bcel.internal.generic; 2 3 56 57 64 public class SWAP extends StackInstruction implements StackConsumer, StackProducer { 65 public SWAP() { 66 super(com.sun.org.apache.bcel.internal.Constants.SWAP); 67 } 68 69 70 78 public void accept(Visitor v) { 79 v.visitStackConsumer(this); 80 v.visitStackProducer(this); 81 v.visitStackInstruction(this); 82 v.visitSWAP(this); 83 } 84 } 85 | Popular Tags |