Package cpw.mods.modlauncher.serviceapi
Class ILaunchPluginService.ComputeFlags
java.lang.Object
cpw.mods.modlauncher.serviceapi.ILaunchPluginService.ComputeFlags
- Enclosing interface:
ILaunchPluginService
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
The plugin did change the class and requires a rewrite, and requires frame re-computation.static final int
The plugin did change the class and requires a rewrite, and requires max re-computation, but frames are unchanged or corrected by the pluginstatic final int
This plugin did not change the class and therefor requires no rewrite of the class.static final int
The plugin did change the class and requires a rewrite, but does not require any additional computation as frames and maxs in the class did not change of have been corrected by the plugin. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
NO_REWRITE
public static final int NO_REWRITEThis plugin did not change the class and therefor requires no rewrite of the class. This is the fastest option- See Also:
-
SIMPLE_REWRITE
public static final int SIMPLE_REWRITEThe plugin did change the class and requires a rewrite, but does not require any additional computation as frames and maxs in the class did not change of have been corrected by the plugin. Should not be combined withCOMPUTE_FRAMES
orCOMPUTE_MAXS
- See Also:
-
COMPUTE_MAXS
public static final int COMPUTE_MAXSThe plugin did change the class and requires a rewrite, and requires max re-computation, but frames are unchanged or corrected by the plugin- See Also:
-
COMPUTE_FRAMES
public static final int COMPUTE_FRAMESThe plugin did change the class and requires a rewrite, and requires frame re-computation. This is the slowest, but also safest method if you don't know what level is required. This impliesCOMPUTE_MAXS
, so maxs will also be recomputed.- See Also:
-
-
Constructor Details
-
ComputeFlags
public ComputeFlags()
-