Interface CodeBlockIf

All Superinterfaces:
CodeBlock, CodeBlockStatement, CodeBlockWithCondition, CodeItem, CodeItemWithVariables, CodeMutable, CodeMutableItem, CodeNode, CodeNodeItem, CodeNodeItemCopyable<CodeBlock, CodeBlockIf>, CodeStatement, CodeWithContext

public interface CodeBlockIf extends CodeBlockWithCondition, CodeNodeItemCopyable<CodeBlock, CodeBlockIf>
CodeBlock for an if block.
Syntax:
if («condition») {
  «statements»
} else if («condition») {
  «statements»
} else {
  «statements»
} 
Since:
1.0.0
Author:
hohwille