Class AsmMemberDefinition

java.lang.Object
org.glassfish.rmic.tools.java.MemberDefinition
org.glassfish.rmic.asm.AsmMemberDefinition
All Implemented Interfaces:
Constants, RuntimeConstants

public class AsmMemberDefinition extends MemberDefinition
  • Field Details

    • exceptions

      private final ClassDeclaration[] exceptions
    • memberValueString

      private final String memberValueString
  • Constructor Details

    • AsmMemberDefinition

      AsmMemberDefinition(long where, ClassDefinition clazz, int modifiers, Type type, Identifier name, String[] exceptions)
      Constructor for a method definition
      Parameters:
      where - the location of the definition relative to the class
      clazz - the containing class
      modifiers - the access modifiers
      type - the constructed type
      name - the name of the method
      exceptions - the checked exceptions throwable by the method
    • AsmMemberDefinition

      AsmMemberDefinition(long where, ClassDefinition clazz, int modifiers, Type type, Identifier name, Object value)
      Constructor for a field definition
      Parameters:
      where - the location of the definition relative to the class
      clazz - the containing class
      modifiers - the access modifiers
      type - the constructed type
      name - the name of the method
      value - the default value for the field
  • Method Details