Class

razie.base.scripting

SealedContext

Related Doc: package scripting

Permalink

class SealedContext extends ScalaAttrAccessImpl with ScriptContext

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SealedContext
  2. ScriptContext
  3. ScalaAttrAccessImpl
  4. AttrAccess
  5. ActionContext
  6. ScalaAttrAccess
  7. JavaAttrAccess
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SealedContext(wraped: ScriptContext)

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. lazy val _attrs: HashMap[String, Any]

    Permalink
    Definition Classes
    ScalaAttrAccessImpl
  5. lazy val _order: ListBuffer[String]

    Permalink
    Definition Classes
    ScalaAttrAccessImpl
  6. lazy val _types: HashMap[String, AttrType]

    Permalink
    Definition Classes
    ScalaAttrAccessImpl
  7. def a(name: String): AnyRef

    Permalink

    I'm really starting to hate typing...

    I'm really starting to hate typing... shortcut for getAttr

    Definition Classes
    SealedContextScalaAttrAccessImplScalaAttrAccess
  8. def addToUrl(url: String): String

    Permalink

    add these attributes to an url, respecting the url parm format, i.e.

    add these attributes to an url, respecting the url parm format, i.e. getMovie?name=300.divx&producer=whoknows

    Definition Classes
    SealedContextScalaAttrAccessImplScalaAttrAccess
  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. def clear(): Unit

    Permalink
    Definition Classes
    ScalaAttrAccessImpl
  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def define(fun: String, expr: String): Unit

    Permalink

    define a new function - these are evaluated every time they are invoked.

    define a new function - these are evaluated every time they are invoked. these also overwrite another symbol, so you can redefine a symbol to do something else.

    DO NOT forget to seal a context before passing it to untrusted plugins

    Definition Classes
    SealedContextScriptContext
  13. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  15. def filter(f: (String, AnyRef) ⇒ Boolean): Iterable[String]

    Permalink
    Definition Classes
    ScalaAttrAccessImplScalaAttrAccess
  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def foreach(f: (String, AnyRef) ⇒ Unit): Unit

    Permalink
    Definition Classes
    ScalaAttrAccessImplScalaAttrAccess
  18. def get[T](name: String): Option[T]

    Permalink

    returns

    the value of the named attribute or null, coerced into an option of the given type

    Definition Classes
    ScalaAttrAccessImplScalaAttrAccess
  19. def getAttr(name: String): AnyRef

    Permalink

    returns

    the value of the named attribute or null

    Definition Classes
    SealedContextScalaAttrAccessImplScalaAttrAccess
  20. def getAttrType(name: String): AttrType

    Permalink

    returns

    the type of the named attribute OR null if not known. Default is by convention String

    Definition Classes
    SealedContextScalaAttrAccessImplScalaAttrAccess
  21. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  22. def getOrElse(name: String, dflt: Any): AnyRef

    Permalink

    returns

    the value of the named attribute or null

    Definition Classes
    SealedContextScalaAttrAccessImplScalaAttrAccess
  23. def getPopulatedAttr(): Iterable[String]

    Permalink

    iterate through the populated attributes.

    iterate through the populated attributes. BE very careful: if you set attrs with NULL values, they are NOT populated!

    Definition Classes
    SealedContextScalaAttrAccessImplScalaAttrAccess
  24. def guard(name: String, condition: String, expr: String): Unit

    Permalink

    TODO 3 FUNC use guards, document

    TODO 3 FUNC use guards, document

    Definition Classes
    SealedContextScriptContext
  25. def hasAttrType(name: String): Boolean

    Permalink

    check if an attribute is populated

    check if an attribute is populated

    Definition Classes
    SealedContextScalaAttrAccessImplScalaAttrAccess
  26. def hashCode(): Int

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

    Permalink
    Definition Classes
    Any
  28. def isPopulated(name: String): Boolean

    Permalink

    check if an attribute is populated

    check if an attribute is populated

    Definition Classes
    SealedContextScalaAttrAccessImplScalaAttrAccess
  29. def map[A, B](f: (String, A) ⇒ B): ScalaAttrAccess

    Permalink
    Definition Classes
    ScalaAttrAccessImplScalaAttrAccess
  30. def mapValues[A, B](f: (A) ⇒ B): Seq[B]

    Permalink
    Definition Classes
    ScalaAttrAccessImplScalaAttrAccess
  31. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  34. def options(script: String, pos: Int): List[String]

    Permalink

    content assist options

    content assist options

    script

    - the line that needs assist

    pos

    - the position it needs assist - normally script.length-1

    Definition Classes
    SealedContextScriptContext
  35. def reset(): Unit

    Permalink

    Reset this context.

    Reset this context. Normally a context would cache a parser/interpreter instance. Reset will make sure this is in pristine condition .

    NOTE that any state MAY be erased. Any variable/values defined in previous scripts may be erased. It is often that the individual interpreter instances cache local values, which would disapear.

    Definition Classes
    SealedContextScriptContext
  36. def sa(name: String): String

    Permalink

    most of the time they're just strings - i'll typecast here...

    most of the time they're just strings - i'll typecast here... this is a() typcast to String

    returns

    "" or the actual toString of the respective value

    Definition Classes
    SealedContextScalaAttrAccessImplScalaAttrAccess
  37. def set(name: String, value: Any, t: AttrType): Unit

    Permalink

    set the value of the named attribute + the name can be of the form name:type

    set the value of the named attribute + the name can be of the form name:type

    Definition Classes
    SealedContextScalaAttrAccessImplScalaAttrAccess
  38. def set(name: String, value: Any): Unit

    Permalink

    set the value of the named attribute + the name can be of the form name:type

    set the value of the named attribute + the name can be of the form name:type

    Definition Classes
    SealedContextScalaAttrAccessImplScalaAttrAccess
  39. def setAttr(pairs: <repeated...>[AnyRef]): Unit

    Permalink
    Definition Classes
    SealedContextJavaAttrAccess
  40. def setAttrPair(name: String, value: Any): Unit

    Permalink

    set the value of the named attribute + the name can be of the form name:type

    set the value of the named attribute + the name can be of the form name:type

    Definition Classes
    SealedContextScalaAttrAccessImplScalaAttrAccess
  41. def setAttrType(name: String, type: AttrType): Unit

    Permalink

    set the type of the named attribute

    set the type of the named attribute

    Definition Classes
    SealedContextScalaAttrAccessImplScalaAttrAccess
  42. def setAttrType(name: String, ttype: String): Unit

    Permalink
    Definition Classes
    ScalaAttrAccessImpl
  43. def sgetOrElse(name: String, dflt: String): String

    Permalink
    Definition Classes
    ScalaAttrAccessImpl
  44. def sgetPopulatedAttr: Iterable[String]

    Permalink

    build from sequence of parm/value pairs or other stuff

    build from sequence of parm/value pairs or other stuff

    Definition Classes
    ScalaAttrAccessImplScalaAttrAccess
  45. def size(): Int

    Permalink

    the number of populated attributes

    the number of populated attributes

    Definition Classes
    SealedContextScalaAttrAccessImplScalaAttrAccess
  46. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  47. def tempcl(): Unit

    Permalink
    Definition Classes
    ScalaAttrAccessImpl
  48. def tempso(name: String): Unit

    Permalink
    Definition Classes
    ScalaAttrAccessImpl
  49. def toJson(obj: JSONObject): JSONObject

    Permalink

    add my attributes to the JSONObject passed in.

    add my attributes to the JSONObject passed in. If null passed in, empty object is created first

    obj

    an json object to add to or null if this is a single element

    Definition Classes
    SealedContextScalaAttrAccessImplScalaAttrAccess
  50. def toPairs(): Array[AnyRef]

    Permalink

    same pairs format name,value,name,value...

    same pairs format name,value,name,value...

    Definition Classes
    SealedContextScalaAttrAccessImplScalaAttrAccess
  51. def toString(): String

    Permalink
    Definition Classes
    ScalaAttrAccessImpl → AnyRef → Any
  52. def toXml(): String

    Permalink

    some random xml format

    some random xml format

    Definition Classes
    SealedContextScalaAttrAccessImplScalaAttrAccess
  53. def undefine(macro: String): Unit

    Permalink

    remove a function

    remove a function

    Definition Classes
    SealedContextScriptContext
  54. def unguard(name: String, condition: String, expr: String): Unit

    Permalink

    TODO 3 FUNC use guards, document

    TODO 3 FUNC use guards, document

    Definition Classes
    SealedContextScriptContext
  55. def unpopulate(name: String): Unit

    Permalink
    Definition Classes
    ScalaAttrAccessImpl
  56. def verbose(v: Boolean): Unit

    Permalink

    make execution verbose or not

    make execution verbose or not

    Definition Classes
    SealedContextScriptContext
  57. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ScriptContext

Inherited from ScalaAttrAccessImpl

Inherited from AttrAccess

Inherited from ActionContext

Inherited from ScalaAttrAccess

Inherited from JavaAttrAccess

Inherited from AnyRef

Inherited from Any

Ungrouped