c

org.fusesource.scalate.util

SourceMapStratum

class SourceMapStratum extends AnyRef

Source
SourceMap.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SourceMapStratum
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
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. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from SourceMapStratum to any2stringadd[SourceMapStratum] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (SourceMapStratum, B)
    Implicit
    This member is added by an implicit conversion from SourceMapStratum to ArrowAssoc[SourceMapStratum] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. 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

  7. 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.

  8. 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.

  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  11. def ensuring(cond: (SourceMapStratum) ⇒ Boolean, msg: ⇒ Any): SourceMapStratum
    Implicit
    This member is added by an implicit conversion from SourceMapStratum to Ensuring[SourceMapStratum] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (SourceMapStratum) ⇒ Boolean): SourceMapStratum
    Implicit
    This member is added by an implicit conversion from SourceMapStratum to Ensuring[SourceMapStratum] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): SourceMapStratum
    Implicit
    This member is added by an implicit conversion from SourceMapStratum to Ensuring[SourceMapStratum] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): SourceMapStratum
    Implicit
    This member is added by an implicit conversion from SourceMapStratum to Ensuring[SourceMapStratum] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  17. var files: ArrayList[(String, String)]
  18. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from SourceMapStratum to StringFormat[SourceMapStratum] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. val lines: ArrayList[LineInfo]
  24. def mapToStratum(line: Int): Option[(String, Int)]
  25. val name: String
  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. def optimize(): Unit

    Combines consecutive LineInfos wherever possible

  30. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  31. 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
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  35. def [B](y: B): (SourceMapStratum, B)
    Implicit
    This member is added by an implicit conversion from SourceMapStratum to ArrowAssoc[SourceMapStratum] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from SourceMapStratum to any2stringadd[SourceMapStratum]

Inherited by implicit conversion StringFormat from SourceMapStratum to StringFormat[SourceMapStratum]

Inherited by implicit conversion Ensuring from SourceMapStratum to Ensuring[SourceMapStratum]

Inherited by implicit conversion ArrowAssoc from SourceMapStratum to ArrowAssoc[SourceMapStratum]

Ungrouped