scala.tools.nsc.backend.jvm.GenASM

JBuilder

abstract class JBuilder extends AnyRef

basic functionality for class file building

Source
GenASM.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JBuilder
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JBuilder(bytecodeWriter: GenASM.BytecodeWriter)

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from JBuilder to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (JBuilder, B)

    Implicit information
    This member is added by an implicit conversion from JBuilder to ArrowAssoc[JBuilder] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  8. val CLASS_CONSTRUCTOR_NAME: String

  9. val EMPTY_JTYPE_ARRAY: Array[Type]

  10. val EMPTY_STRING_ARRAY: Array[String]

  11. val INNER_CLASSES_FLAGS: Int

  12. val INSTANCE_CONSTRUCTOR_NAME: String

  13. def addInnerClasses(csym: Global.Symbol, jclass: ClassVisitor): Unit

  14. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  15. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  16. def createJAttribute(name: String, b: Array[Byte], offset: Int, len: Int): Attribute

  17. def createJClass(access: Int, name: String, signature: String, superName: String, interfaces: Array[String]): ClassWriter

    Returns a new ClassWriter for the class given by arguments.

    Returns a new ClassWriter for the class given by arguments.

    access

    the class's access flags. This parameter also indicates if the class is deprecated.

    name

    the internal name of the class.

    signature

    the signature of this class. May be null if the class is not a generic one, and does not extend or implement generic classes or interfaces.

    superName

    the internal of name of the super class. For interfaces, the super class is Object. May be null, but only for the Object class.

    interfaces

    the internal names of the class's interfaces (see Type#getInternalName() getInternalName). May be null.

  18. def descriptor(s: Global.Symbol): String

  19. def descriptor(k: Global.icodes.TypeKind): String

  20. def descriptor(t: Global.Type): String

  21. def ensuring(cond: (JBuilder) ⇒ Boolean, msg: ⇒ Any): JBuilder

    Implicit information
    This member is added by an implicit conversion from JBuilder to Ensuring[JBuilder] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. def ensuring(cond: (JBuilder) ⇒ Boolean): JBuilder

    Implicit information
    This member is added by an implicit conversion from JBuilder to Ensuring[JBuilder] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. def ensuring(cond: Boolean, msg: ⇒ Any): JBuilder

    Implicit information
    This member is added by an implicit conversion from JBuilder to Ensuring[JBuilder] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  24. def ensuring(cond: Boolean): JBuilder

    Implicit information
    This member is added by an implicit conversion from JBuilder to Ensuring[JBuilder] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  25. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  28. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from JBuilder to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  29. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  31. val innerClassBuffer: LinkedHashSet[Global.Symbol]

  32. def innerClassSymbolFor(s: Global.Symbol): Global.Symbol

    For given symbol return a symbol corresponding to a class that should be declared as inner class.

    For given symbol return a symbol corresponding to a class that should be declared as inner class.

    For example: class A { class B object C }

    then method will return: NoSymbol for A, the same symbol for A.B (corresponding to A$B class), and A$C$ symbol for A.C.

  33. def isDeprecated(sym: Global.Symbol): Boolean

  34. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  35. def javaArrayType(elem: Type): Type

  36. def javaName(sym: Global.Symbol): String

    Return the name of this symbol that can be used on the Java platform.

    Return the name of this symbol that can be used on the Java platform. It removes spaces from names.

    Special handling: scala.Nothing erases to scala.runtime.Nothing$ scala.Null erases to scala.runtime.Null$

    This is needed because they are not real classes, and they mean 'abrupt termination upon evaluation of that expression' or null respectively. This handling is done already in GenICode, but here we need to remove references from method signatures to these types, because such classes cannot exist in the classpath: the type checker will be very confused.

  37. def javaType(s: Global.Symbol): Type

  38. def javaType(t: Global.Type): Type

  39. def javaType(tk: Global.icodes.TypeKind): Type

  40. val mdesc_arglessvoid: String

  41. def mkArray(xs: Traversable[String]): Array[String]

  42. def mkArray(xs: Traversable[Type]): Array[Type]

    Specialized array conversion to prevent calling java.

    Specialized array conversion to prevent calling java.lang.reflect.Array.newInstance via TraversableOnce.toArray

  43. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  44. final def notify(): Unit

    Definition Classes
    AnyRef
  45. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  46. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  47. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  51. def writeIfNotTooBig(label: String, jclassName: String, jclass: ClassWriter, sym: Global.Symbol): Unit

  52. def [B](y: B): (JBuilder, B)

    Implicit information
    This member is added by an implicit conversion from JBuilder to ArrowAssoc[JBuilder] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implict Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from JBuilder to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jBuilder: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from JBuilder to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jBuilder: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: JBuilder

    Implicit information
    This member is added by an implicit conversion from JBuilder to ArrowAssoc[JBuilder] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jBuilder: ArrowAssoc[JBuilder]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: JBuilder

    Implicit information
    This member is added by an implicit conversion from JBuilder to Ensuring[JBuilder] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jBuilder: Ensuring[JBuilder]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from JBuilder to StringAdd

Inherited by implicit conversion any2stringfmt from JBuilder to StringFormat

Inherited by implicit conversion any2ArrowAssoc from JBuilder to ArrowAssoc[JBuilder]

Inherited by implicit conversion any2Ensuring from JBuilder to Ensuring[JBuilder]

Ungrouped