| org.objectweb.asm.jip.commons.TableSwitchGenerator
TableSwitchGenerator | public interface TableSwitchGenerator (Code) | | A code generator for switch statements.
author: Juozas Baliuka author: Chris Nokleberg author: Eric Bruneton |
generateCase | void generateCase(int key, Label end)(Code) | | Generates the code for a switch case.
Parameters: key - the switch case key. Parameters: end - a label that corresponds to the end of the switch statement. |
generateDefault | void generateDefault()(Code) | | Generates the code for the default switch case.
|
|
|