scala.tools.nsc.backend.jvm.GenASM

JBeanInfoBuilder

class JBeanInfoBuilder extends JBuilder

builder of bean info classes

Linear Supertypes
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JBeanInfoBuilder
  2. JBuilder
  3. AnyRef
  4. 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 JBeanInfoBuilder(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 JBeanInfoBuilder to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (JBeanInfoBuilder, B)

    Implicit information
    This member is added by an implicit conversion from JBeanInfoBuilder to ArrowAssoc[JBeanInfoBuilder] 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

    Definition Classes
    JBuilder
  9. val EMPTY_JTYPE_ARRAY: Array[Type]

    Definition Classes
    JBuilder
  10. val EMPTY_STRING_ARRAY: Array[String]

    Definition Classes
    JBuilder
  11. val INNER_CLASSES_FLAGS: Int

    Definition Classes
    JBuilder
  12. val INSTANCE_CONSTRUCTOR_NAME: String

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

    Definition Classes
    JBuilder
  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

    Definition Classes
    JBuilder
  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.

    Definition Classes
    JBuilder
  18. def descriptor(s: Global.Symbol): String

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

    Definition Classes
    JBuilder
  20. def descriptor(t: Global.Type): String

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

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

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

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

    Implicit information
    This member is added by an implicit conversion from JBeanInfoBuilder to Ensuring[JBeanInfoBuilder] 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( classOf[java.lang.Throwable] )
  28. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from JBeanInfoBuilder to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  29. def genBeanInfoClass(clasz: Global.icodes.IClass): Unit

    Generate a bean info class that describes the given class.

  30. final def getClass(): Class[_]

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

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

    Definition Classes
    JBuilder
  33. 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.

    Definition Classes
    JBuilder
  34. def isDeprecated(sym: Global.Symbol): Boolean

    Definition Classes
    JBuilder
  35. final def isInstanceOf[T0]: Boolean

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

    Definition Classes
    JBuilder
  37. 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.

    Definition Classes
    JBuilder
  38. def javaType(s: Global.Symbol): Type

    Definition Classes
    JBuilder
  39. def javaType(t: Global.Type): Type

    Definition Classes
    JBuilder
  40. def javaType(tk: Global.icodes.TypeKind): Type

    Definition Classes
    JBuilder
  41. val mdesc_arglessvoid: String

    Definition Classes
    JBuilder
  42. def mkArray(xs: Traversable[String]): Array[String]

    Definition Classes
    JBuilder
  43. 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

    Definition Classes
    JBuilder
  44. final def ne(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef
  48. def toString(): String

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

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

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

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

    Definition Classes
    JBuilder
  53. def [B](y: B): (JBeanInfoBuilder, B)

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

Shadowed Implicit Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from JBeanInfoBuilder 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:
    (jBeanInfoBuilder: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from JBeanInfoBuilder 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:
    (jBeanInfoBuilder: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: JBeanInfoBuilder

    Implicit information
    This member is added by an implicit conversion from JBeanInfoBuilder to ArrowAssoc[JBeanInfoBuilder] 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:
    (jBeanInfoBuilder: ArrowAssoc[JBeanInfoBuilder]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: JBeanInfoBuilder

    Implicit information
    This member is added by an implicit conversion from JBeanInfoBuilder to Ensuring[JBeanInfoBuilder] 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:
    (jBeanInfoBuilder: Ensuring[JBeanInfoBuilder]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from JBuilder

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from JBeanInfoBuilder to StringAdd

Inherited by implicit conversion any2stringfmt from JBeanInfoBuilder to StringFormat

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

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

Ungrouped