org.fusesource.scalate.util

SourceMapStratum

class SourceMapStratum extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SourceMapStratum
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SourceMapStratum(name: String)

Type Members

  1. class LineInfo extends AnyRef

    Represents a single LineSection in an SMAP, associated with a particular stratum.

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. def addFile(filename: String, filePath: String): Int

    Adds record of a new file, by filename and path.

    Adds record of a new file, by filename and path. The path may be relative to a source compilation path.

    filename

    the filename to add, unqualified by path

    filePath

    the path for the filename, potentially relative to a source compilation path

  5. def addFile(filename: String): Int

    Adds record of a new file, by filename.

    Adds record of a new file, by filename.

    filename

    the filename to add, unqualified by path.

  6. def addLine(istart: Int, ifile: Int, icount: Int, oline: Int, oincrement: Int): Unit

    Adds complete information about a simple line mapping.

    Adds complete information about a simple line mapping. Specify all the fields in this method; the back-end machinery takes care of printing only those that are necessary in the final SMAP.

    istart

    starting line in the source file (SMAP InputStartLine)

    icount

    the number of lines in the input to map (SMAP LineFileCount)

    oline

    starting line in the output file (SMAP OutputStartLine)

    oincrement

    number of output lines to map to each input line (SMAP OutputLineIncrement). Given the fact that the name starts with "output", I continuously have the subconscious urge to call this field OutputLineExcrement.

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

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

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

    Definition Classes
    AnyRef → Any
  11. var files: ArrayList[(String, String)]

  12. def finalize(): Unit

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

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

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

    Definition Classes
    Any
  16. val lines: ArrayList[LineInfo]

  17. def mapToStratum(line: Int): Option[(String, Int)]

  18. val name: String

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

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

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

    Definition Classes
    AnyRef
  22. def optimize(): Unit

    Combines consecutive LineInfos wherever possible

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

    Definition Classes
    AnyRef
  24. def toString(): String

    Returns the given stratum as a String: a StratumSection, followed by at least one FileSection and at least one LineSection.

    Returns the given stratum as a String: a StratumSection, followed by at least one FileSection and at least one LineSection.

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped