joeq.Compiler.BytecodeAnalysis
Class Bytecodes.PUTSTATIC

java.lang.Object
  extended by joeq.Compiler.BytecodeAnalysis.Bytecodes.Instruction
      extended by joeq.Compiler.BytecodeAnalysis.Bytecodes.CPInstruction
          extended by joeq.Compiler.BytecodeAnalysis.Bytecodes.FieldOrMethod
              extended by joeq.Compiler.BytecodeAnalysis.Bytecodes.FieldInstruction
                  extended by joeq.Compiler.BytecodeAnalysis.Bytecodes.PUTSTATIC
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable, Bytecodes.ExceptionThrower, Bytecodes.LoadClass, Bytecodes.PopInstruction, Bytecodes.StackConsumer, Bytecodes.TypedInstruction
Enclosing interface:
Bytecodes

public static class Bytecodes.PUTSTATIC
extends Bytecodes.FieldInstruction
implements Bytecodes.ExceptionThrower, Bytecodes.StackConsumer, Bytecodes.PopInstruction, Bytecodes.TypedInstruction, Bytecodes.LoadClass

See Also:
Serialized Form

Constructor Summary
Bytecodes.PUTSTATIC(jq_StaticField f)
           
 
Method Summary
 void accept(Bytecodes.Visitor v)
          Call corresponding visitor method(s).
 int consumeStack()
           
 java.util.Set getExceptions()
           
 
Methods inherited from class joeq.Compiler.BytecodeAnalysis.Bytecodes.FieldInstruction
getField, getFieldName, getFieldType, getType, toString
 
Methods inherited from class joeq.Compiler.BytecodeAnalysis.Bytecodes.FieldOrMethod
getClassName, getClassType, getLoadClassType, getName, getSignature
 
Methods inherited from class joeq.Compiler.BytecodeAnalysis.Bytecodes.CPInstruction
dump, getIndex, getObject, setIndex, setObject, toString
 
Methods inherited from class joeq.Compiler.BytecodeAnalysis.Bytecodes.Instruction
copy, getLength, getOpcode, produceStack, readInstruction
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface joeq.Compiler.BytecodeAnalysis.Bytecodes.TypedInstruction
getType
 
Methods inherited from interface joeq.Compiler.BytecodeAnalysis.Bytecodes.LoadClass
getLoadClassType, getType
 

Constructor Detail

Bytecodes.PUTSTATIC

public Bytecodes.PUTSTATIC(jq_StaticField f)
Method Detail

consumeStack

public int consumeStack()
Specified by:
consumeStack in interface Bytecodes.StackConsumer
Overrides:
consumeStack in class Bytecodes.Instruction
Returns:
Number of words consumed from stack by this instruction

getExceptions

public java.util.Set getExceptions()
Specified by:
getExceptions in interface Bytecodes.ExceptionThrower

accept

public void accept(Bytecodes.Visitor v)
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.

Specified by:
accept in class Bytecodes.Instruction
Parameters:
v - Visitor object