Uses of Class
unsw.cse.framescript.Pattern

Uses of Pattern in unsw.cse.framescript
 

Methods in unsw.cse.framescript that return Pattern
 Pattern Pattern.append(Pattern p)
          Appends a pattern to the end of a pattern.
protected  Pattern Subr.check_pattern(Instance currentObject, Term[] args, int n, StackFrame frame)
          Convenience routine to check pattern arguments for built-in functions.
static Pattern Utils.check_pattern(java.lang.String functionName, Instance currentObject, Term[] arg, int n, StackFrame frame)
          Convenience routine to check pattern arguments for built-in functions.
static Pattern Utils.getPattern(java.lang.String str)
          Turns a string into a Pattern so it can be used as an input for a domain.
 Pattern MicaBot.getResponse(Pattern input)
          Asks the MicaBot to process a given pattern.
 Pattern Domain.getResponse(Pattern input)
          Gets the response from the domain for a given user input.
 Pattern XMLSerialiser.parsePatternNode(org.w3c.dom.Node n)
          Parses an XML node for a Pattern.
 Pattern Parser.pattern()
          Reads a pattern from the input.
 

Methods in unsw.cse.framescript with parameters of type Pattern
 Pattern Pattern.append(Pattern p)
          Appends a pattern to the end of a pattern.
 Pattern MicaBot.getResponse(Pattern input)
          Asks the MicaBot to process a given pattern.
 Pattern Domain.getResponse(Pattern input)
          Gets the response from the domain for a given user input.
static boolean Utils.isPattern(Pattern p)
          Test if a Pattern could have been read in by a Parser.
 void MicaBot.processInput(Pattern input)
           
 void GUIBot.processInput(Pattern input)
           
 void Conversation.processInput(Pattern input)
          Tells the conversation to treat a pattern as user input.
 

Constructors in unsw.cse.framescript with parameters of type Pattern
Pattern(Term t, Pattern p)
          Creates a pattern where a term a placed at the head of another pattern.