Uses of Interface
uk.co.badgersinfoil.metaas.dom.Statement

Packages that use Statement
uk.co.badgersinfoil.metaas.dom Interfaces defining the Document Object Model for an ActionScript 3 source code file. 
 

Uses of Statement in uk.co.badgersinfoil.metaas.dom
 

Subinterfaces of Statement in uk.co.badgersinfoil.metaas.dom
 interface ASBlock
          A code-block, as used for a while-loop body or if-statement branch.
 interface ASBreakStatement
          A break statement.
 interface ASContinueStatement
          A continue statement, as allowed within the various loop-statements.
 interface ASDeclarationStatement
          A statement that declares variables, such as var a = 1;.
 interface ASDefaultXMLNamespaceStatement
          A statement setting the default XML namespace for the current scope, such as default xml namespace = "http://example.com/";
 interface ASDoWhileStatement
          A do-while loop, such as do { } while (condition);.
 interface ASExpressionStatement
          A simple statement which evaluates an expression.
 interface ASForEachInStatement
          A for-each-in statement, such as for each(v in a) { }.
 interface ASForInStatement
          A for-in statement, such as for (v in a) { }.
 interface ASForStatement
          A for statement, such as for (; ; ) { }.
 interface ASIfStatement
          An if-statement, such as if (a) { doSomething(); }.
 interface ASReturnStatement
          A return statement, such as return; or return res;.
 interface ASSuperStatement
          A call to a superclass constructor, such as super(args);.
 interface ASSwitchStatement
          A switch-statement, such as switch (c) { }.
 interface ASThrowStatement
          A throw-statement, such as throw new Error("bang!");.
 interface ASTryStatement
          A try-statement, such as try { } catch (e) { }.
 interface ASWhileStatement
          A while-loop, such as while (test()) { }.
 interface ASWithStatement
          A with-statement, such as with (expr) { }.
 

Methods in uk.co.badgersinfoil.metaas.dom that return Statement
 Statement StatementContainer.addStmt(java.lang.String statement)
          Checks the syntax of the given code, and then adds the statement to the end of the current block.
 Statement ASWhileStatement.getBody()
           
 Statement ASWithStatement.getBody()
           
 Statement ASIfStatement.getElseStatement()
          Returns the statement attached to the else-clause of this if-statement, or null if no else-clause is present.
 Statement ASIfStatement.getThenStatement()
           
 

Methods in uk.co.badgersinfoil.metaas.dom with parameters of type Statement
 void ASIfStatement.setThenStatement(Statement then)
           
 



Copyright © 2006-2008 David Holroyd. All Rights Reserved.