Package org.stjs.generator.writer.statement

Class Summary
AssertWriter<JS> asserts - not supported
BlockWriter<JS> regular blocks.
BreakWriter<JS>  
CaseWriter<JS>  
CatchWriter<JS>  
ContinueWriter<JS>  
DoWhileLoopWriter<JS>  
EmptyStatementWriter<JS>  
EnhancedForLoopWriter<JS> generates from for (String x : list) { } for(var x in list) { } Warning: the iteration is on indexes as in JavaScript, not on values as in Java!
ExpressionStatementWriter<JS>  
ForLoopWriter<JS>  
IfWriter<JS>  
LabeledStatementWriter<JS>  
MultipleVariableWriter<JS> this is a special writer called from a block to handle the case of multiple variables declarated on the same line.
ReturnWriter<JS>  
SwitchWriter<JS> switch
SynchronizedWriter<JS> Synchronized blocks are not allowed
ThrowWriter<JS>  
TryWriter<JS> Try blocks -> as in java
VariableWriter<JS> variable declaration.
WhileLoopWriter<JS> while loop - as in Java
 



Copyright © 2014. All Rights Reserved.