Object

org.opalj.bc

Assembler

Related Doc: package bc

Permalink

object Assembler

Factory to create the binary representation (that is, an array of bytes) of a given class file.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Assembler
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. implicit object RichAnnotation extends ClassFileElement[Annotation]

    Permalink
  5. implicit object RichAttribute extends ClassFileElement[Attribute]

    Permalink
  6. implicit object RichCONSTANT_Class_info extends ClassFileElement[CONSTANT_Class_info]

    Permalink
  7. implicit object RichCONSTANT_Double_info extends ClassFileElement[CONSTANT_Double_info]

    Permalink
  8. implicit object RichCONSTANT_Float_info extends ClassFileElement[CONSTANT_Float_info]

    Permalink
  9. implicit object RichCONSTANT_Integer_info extends ClassFileElement[CONSTANT_Integer_info]

    Permalink
  10. implicit object RichCONSTANT_InvokeDynamic_info extends ClassFileElement[CONSTANT_InvokeDynamic_info]

    Permalink
  11. implicit object RichCONSTANT_Long_info extends ClassFileElement[CONSTANT_Long_info]

    Permalink
  12. implicit object RichCONSTANT_MethodHandle_info extends ClassFileElement[CONSTANT_MethodHandle_info]

    Permalink
  13. implicit object RichCONSTANT_MethodType_info extends ClassFileElement[CONSTANT_MethodType_info]

    Permalink
  14. implicit object RichCONSTANT_NameAndType_info extends ClassFileElement[CONSTANT_NameAndType_info]

    Permalink
  15. implicit object RichCONSTANT_Ref extends ClassFileElement[CONSTANT_Ref]

    Permalink
  16. implicit object RichCONSTANT_String_info extends ClassFileElement[CONSTANT_String_info]

    Permalink
  17. implicit object RichCONSTANT_Utf8_info extends ClassFileElement[CONSTANT_Utf8_info]

    Permalink
  18. implicit object RichClassFile extends ClassFileElement[ClassFile]

    Permalink
  19. implicit object RichConstant_Pool_Entry extends ClassFileElement[Constant_Pool_Entry]

    Permalink
  20. implicit object RichElementValue extends ClassFileElement[ElementValue]

    Permalink
  21. implicit object RichFieldInfo extends ClassFileElement[Field_Info]

    Permalink
  22. implicit object RichMethodInfo extends ClassFileElement[Method_Info]

    Permalink
  23. implicit object RichTypeAnnotation extends ClassFileElement[TypeAnnotation]

    Permalink
  24. implicit object RichVerificationTypeInfo extends ClassFileElement[VerificationTypeInfo]

    Permalink
  25. def apply(classFile: ClassFile, segmentInformation: (String, Int) ⇒ Unit = ...): Array[Byte]

    Permalink

    segmentInformation

    A function that will be called back to provide information about the segment that was just written. This is particularly useful when debugging the serializer to determine which segments were successfully/completely written.

  26. def as[T](x: AnyRef): T

    Permalink
  27. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  28. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  30. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  31. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  32. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  33. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  34. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  35. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  36. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  37. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  38. def serialize[T](t: T)(implicit arg0: ClassFileElement[T], out: DataOutputStream, segmentInformation: (String, Int) ⇒ Unit): Unit

    Permalink

    Note

    You should use serialize if the concrete/required type of the given parameter is available/can be automatically inferred by the Scala compiler.

  39. def serializeAs[T](t: AnyRef)(implicit out: DataOutputStream, segmentInformation: (String, Int) ⇒ Unit, cfe: ClassFileElement[T]): Unit

    Permalink

    serializeAs makes it possible to specify the object type of the given parameter t and that type will then be used to pick up the implicit class file element value.

  40. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  41. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  42. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped