Class

org.fusesource.scalate.util

SourceMapStratum

Related Doc: package util

Permalink

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)

    Permalink

Type Members

  1. class LineInfo extends AnyRef

    Permalink

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

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Implicit information
    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)

    Permalink
    Implicit information
    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

    Permalink
    Definition Classes
    AnyRef → Any
  6. def addFile(filename: String, filePath: String): Int

    Permalink

    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

    Permalink

    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

    Permalink

    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

    Permalink
    Definition Classes
    Any
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def ensuring(cond: (SourceMapStratum) ⇒ Boolean, msg: ⇒ Any): SourceMapStratum

    Permalink
    Implicit information
    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

    Permalink
    Implicit information
    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

    Permalink
    Implicit information
    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

    Permalink
    Implicit information
    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

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

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

    Permalink
  18. def finalize(): Unit

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

    Permalink
    Implicit information
    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[_]

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

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

    Permalink
    Definition Classes
    Any
  23. val lines: ArrayList[LineInfo]

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

    Permalink
  25. val name: String

    Permalink
  26. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  27. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. def optimize(): Unit

    Permalink

    Combines consecutive LineInfos wherever possible

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

    Permalink
    Definition Classes
    AnyRef
  31. def toString(): String

    Permalink

    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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. def [B](y: B): (SourceMapStratum, B)

    Permalink
    Implicit information
    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