t

xsbti.compile

ClassFileManager

trait ClassFileManager extends AnyRef

Represent the interface to manage the generated class files by the Scala or Java compilers. The class file manager is responsible for providing operations to users to allow them to have a fine-grained control over the generated class files and how they are generated/deleted.

This class is meant to be used once per compilation run.

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

Abstract Value Members

  1. abstract def complete(success: Boolean): Unit

    Informs the class file manager whether the compilation run has succeeded.

    Informs the class file manager whether the compilation run has succeeded.

    If it has not succeeded, the class file manager will handle the current generated and the previous class files as per the underlying algorithm.

    success

    Whether the compilation run has succeeded or not.

  2. abstract def delete(classes: Array[File]): Unit

    Handler of classes that decides where certain class files should be stored after every compilation step.

    Handler of classes that decides where certain class files should be stored after every compilation step.

    This method is called once per compilation run with the class files generated by that concrete run.

    classes

    The generated class files by the immediate compilation run.

    Annotations
    @Deprecated
    Deprecated
  3. abstract def generated(classes: Array[File]): Unit

    Handler of classes that decides where certain class files should be stored after every compilation step.

    Handler of classes that decides where certain class files should be stored after every compilation step.

    This method is called once per compilation run with the class files generated by that concrete run.

    classes

    The generated class files by the immediate compilation run.

    Annotations
    @Deprecated
    Deprecated

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. def delete(classes: Array[VirtualFile]): Unit

    Handler of classes that deletes them prior to every compilation step.

    Handler of classes that deletes them prior to every compilation step.

    classes

    The generated class files must not exist if the method returns normally, as well as any empty ancestor directories of deleted files.

  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. def generated(classes: Array[VirtualFile]): Unit

    Handler of classes that decides where certain class files should be stored after every compilation step.

    Handler of classes that decides where certain class files should be stored after every compilation step.

    This method is called once per compilation run with the class files generated by that concrete run.

    classes

    The generated class files by the immediate compilation run.

  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped