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 ASDeclarationStatement
          Represents a statement that declares a variable.
 interface ASDoWhileStatement
          Obtained from StatementContainer.newDoWhile(String), represents a do { } while (condition); construct.
 interface ASExpressionStatement
          A simple statement which evaluates an expression.
 interface ASForEachInStatement
          Obtained from StatementContainer.newForEachIn(String,String), represents a for each(v in a) { } statement.
 interface ASForInStatement
          Obtained from StatementContainer.newForIn(String,String), represents a for (v in a) { } statement.
 interface ASForStatement
          Obtained from StatementContainer.newFor(String,String,String), represents a for (; ; ) { } statement.
 interface ASIfStatement
          Obtained from StatementContainer.newIf(String), an ASIfStatement allows statements to be added to the 'then' and else' branches.
 interface ASReturnStatement
          A statement that exits the current ActionScript method or function, optionally returning a value to the caller.
 interface ASSwitchStatement
          Obtained from StatementContainer.newSwitch(String), an ASSwitchStatement allows 'case' and 'default' statements to be added to to the 'switch' statement.
 interface ASWhileStatement
          Obtained from StatementContainer.newWhile(String), this represents a while (test()) { } construct.
 interface ASWithStatement
          An ActionScript with (expr) { } construct.
 



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