Class/Object

org.fusesource.scalate.util

SourceMap

Related Docs: object SourceMap | package util

Permalink

class SourceMap extends AnyRef

Represents a source map (SMAP), which serves to associate lines of the input JSP file(s) to lines in the generated servlet in the final .class file, according to the JSR-045 spec.

Source
SourceMap.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SourceMap
  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 SourceMap()

    Permalink

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 SourceMap to any2stringadd[SourceMap] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (SourceMap, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from SourceMap to ArrowAssoc[SourceMap] 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 addSmap(smap: String, stratumName: String): Unit

    Permalink

    Adds the given string as an embedded SMAP with the given stratum name.

    Adds the given string as an embedded SMAP with the given stratum name.

    smap

    the SMAP to embed

    stratumName

    the name of the stratum output by the compilation that produced the smap to be embedded

  7. def addStratum(stratum: SourceMapStratum, defaultStratum: Boolean): Unit

    Permalink

    Adds the given SourceMapStratum object, representing a Stratum with logically associated FileSection and LineSection blocks, to the current SourceMap.

    Adds the given SourceMapStratum object, representing a Stratum with logically associated FileSection and LineSection blocks, to the current SourceMap. If default is true, this stratum is made the default stratum, overriding any previously set default.

    stratum

    the SourceMapStratum object to add

    defaultStratum

    if true, this SourceMapStratum is considered to represent the default SMAP stratum unless overwritten

  8. final def asInstanceOf[T0]: T0

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

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

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

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

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from SourceMap to Ensuring[SourceMap] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from SourceMap to StringFormat[SourceMap] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  18. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  21. def mapToStratum(line: Int, name: String = defaultStratum): Option[(String, Int)]

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

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

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

    Permalink
    Definition Classes
    AnyRef
  25. def setDoEmbedded(status: Boolean): Unit

    Permalink

    Instructs the SourceMap whether to actually print any embedded SMAPs or not.

    Instructs the SourceMap whether to actually print any embedded SMAPs or not. Intended for situations without an SMAP resolver.

    status

    If false, ignore any embedded SMAPs.

  26. def setOutputFileName(x: String): Unit

    Permalink

    Sets the filename (without path information) for the generated source file.

    Sets the filename (without path information) for the generated source file. E.g., "foo$jsp.java".

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

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

    Permalink
    Definition Classes
    SourceMap → AnyRef → Any
  29. final def wait(): Unit

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

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

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

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

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped