Uses of Interface
edu.vub.at.objects.ATText

Packages that use ATText
edu.vub.at   
edu.vub.at.objects   
edu.vub.at.objects.grammar   
edu.vub.at.objects.natives   
edu.vub.at.objects.natives.grammar   
edu.vub.at.parser   
 

Uses of ATText in edu.vub.at
 

Methods in edu.vub.at with parameters of type ATText
 ATObject OBJUnit.meta_evaluate(ATText source)
           
 NATNil OBJUnit.base_assert_evaluatesTo(ATText source, ATObject expected)
           
 NATNil OBJUnit.base_assert_printsTo(ATText source, ATObject expected)
           
 

Uses of ATText in edu.vub.at.objects
 

Methods in edu.vub.at.objects that return ATText
 ATText ATTable.base_implode()
          Implode the receiver table of characters into a text string
 ATText ATTable.base_join(ATText txt)
          Join all the text elements of the receiver table into a text string where the argument is used as a separator
 ATText ATText.base_replace_by_(ATText regexp, ATClosure transformer)
           
 ATText ATText.base_toUpperCase()
           
 ATText ATText.base_toLowerCase()
           
 ATText ATText.base__oppls_(ATObject other)
           
 

Methods in edu.vub.at.objects with parameters of type ATText
 ATText ATTable.base_join(ATText txt)
          Join all the text elements of the receiver table into a text string where the argument is used as a separator
 ATTable ATText.base_split(ATText separator)
           
 ATNil ATText.base_find_do_(ATText regexp, ATClosure consumer)
           
 ATText ATText.base_replace_by_(ATText regexp, ATClosure transformer)
           
 ATNumber ATText.base__opltx__opeql__opgtx_(ATText other)
           
 ATBoolean ATText.base__optil__opeql_(ATText other)
           
 

Uses of ATText in edu.vub.at.objects.grammar
 

Methods in edu.vub.at.objects.grammar that return ATText
 ATText ATSymbol.base_getText()
          Transform a symbol into a string.
 

Uses of ATText in edu.vub.at.objects.natives
 

Classes in edu.vub.at.objects.natives that implement ATText
 class NATText
          The native implementation of an AmbientTalk text string.
 

Methods in edu.vub.at.objects.natives that return ATText
 ATText OBJLexicalRoot.base_print_(ATObject obj)
          print: expression => string representing the expression
 ATText NATText.base_replace_by_(ATText regexp, ATClosure transformer)
           
 ATText NATText.base_toUpperCase()
           
 ATText NATText.base_toLowerCase()
           
 ATText NATText.base__oppls_(ATObject other)
           
 ATText NATTable.base_implode()
           
 ATText NATTable.base_join(ATText sep)
           
 

Methods in edu.vub.at.objects.natives with parameters of type ATText
 ATAbstractGrammar OBJLexicalRoot.base_read_(ATText source)
          read: "text" => parses the given string into an AST
 ATTable NATText.base_split(ATText regexp)
          Split the string according to the given regular expression.
 ATNil NATText.base_find_do_(ATText regexp, ATClosure consumer)
           
 ATText NATText.base_replace_by_(ATText regexp, ATClosure transformer)
           
 ATNumber NATText.base__opltx__opeql__opgtx_(ATText other)
           
 ATBoolean NATText.base__optil__opeql_(ATText other)
           
 ATText NATTable.base_join(ATText sep)
           
 

Uses of ATText in edu.vub.at.objects.natives.grammar
 

Methods in edu.vub.at.objects.natives.grammar that return ATText
 ATText AGSymbol.base_getText()
           
 

Uses of ATText in edu.vub.at.parser
 

Methods in edu.vub.at.parser with parameters of type ATText
 ATAbstractGrammar NATParser.base_parse(ATText source)