TPTP 4.2.0 Platform Project
Internal API Specification

Package org.eclipse.tptp.platform.analysis.codereview.java.internal.quickfix.declaration

Class Summary
RuleDeclarationDeclareConstantsQuickfix Quickfix for the rule RuleDeclarationDeclareConstants Creates a new "public static final String" variable with an identifier supplied by the user and replaces all instances of the string literal with this identifier.
RuleDeclarationMixedDeclarationQuicfix Quickfix for the rule RuleDeclarationMixedDeclaration Replaces the mixed variable declaration(basic and array) statement with separated variable declarations E.g int i=3, j[] = new int[2]; After performing quickfix: //in the body of the class containing the result: int i = 3; int[] j = new int[2];
 


TPTP 4.2.0 Platform Project
Internal API Specification