Uses of Class
inf.compilers.ExpressivenessException

Uses of ExpressivenessException in inf.compilers
 

Methods in inf.compilers that throw ExpressivenessException
protected  org.w3c.dom.Element XmlAdaptor.generateContentNodeTree(org.w3c.dom.Document doc, java.lang.String ns, java.lang.String tag, SyntaxAdaptable content, java.lang.String syntax)
           This utility function can be called to generate a tree of Nodes for some content in a layered language.
 org.w3c.dom.Document XmlAdaptor.generateDocument(R intern)
           This function takes an object in the internal representation and generates an according Document.
abstract  org.w3c.dom.Element XmlAdaptor.generateNodeTree(org.w3c.dom.Document doc, R intern)
           This function is called (indirectly) by the default implementation of the XmlAdaptor.write(R, java.io.Writer) function provided by XmlAdaptor.
protected  SyntaxAdaptable XmlAdaptor.parseContentNodeTree(org.w3c.dom.Element content, java.lang.String syntax)
           This utility function can be called to parse a tree of Nodes containing some content in a layered language.
 R XmlAdaptor.parseDocument(org.w3c.dom.Document doc)
           This function takes a Document and generates an according object in the internal representation.
abstract  R XmlAdaptor.parseNodeTree(org.w3c.dom.Element root)
           This function is called (directly) by the default implementation of the XmlAdaptor.read(java.io.Reader) function provided by XmlAdaptor.
 void XmlAdaptor.prettyPrint(int indent, R intern, java.io.Writer w)
           This function takes a Java object in the internal representation (a SyntaxAdaptable), and writes it to the given Writer as a string conforming to the XML syntax of the language used by this adaptor.
 void SyntaxAdaptor.prettyPrint(int indent, R intern, java.io.Writer w)
           This function takes a Java object in the internal representation (a SyntaxAdaptable), and writes it to the given Writer as a string conforming to the syntax of the language used by this adaptor.
 void SyntaxAdaptable.prettyPrint(int indent, java.io.Writer w, SyntaxAdaptor<? extends SyntaxAdaptable> adaptor)
           This function can be used to write this SyntaxAdaptable object to the given Writer.
 R XmlAdaptor.read(java.io.Reader r)
           This function attempts to parse characters from the given Reader until a sentence that represents an object in the internal representation R has been parsed.
 R SyntaxAdaptor.read(java.io.Reader r)
           This function attempts to parse characters from the given Reader until a sentence that represents an object in the internal representation R has been parsed.
 void XmlAdaptor.write(R intern, java.io.Writer w)
           This function takes a Java object in the internal representation (a SyntaxAdaptable), and writes it to the given Writer as a string conforming to the XML syntax of the language used by this adaptor.
 void SyntaxAdaptor.write(R intern, java.io.Writer w)
           This function takes a Java object in the internal representation (a SyntaxAdaptable), and writes it to the given Writer as a string conforming to the syntax of the language used by this adaptor.
 void SyntaxAdaptable.write(java.io.Writer w, SyntaxAdaptor<? extends SyntaxAdaptable> adaptor)
           This function can be used to write this SyntaxAdaptable object to the given Writer.