Package org.jboss.windup.tooling.data
Interface Quickfix
-
- All Superinterfaces:
Serializable
public interface Quickfix extends Serializable
Contains a representation of aQuickfixModelfor use by tooling (eg, Eclipse).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FilegetFile()StringgetName()Contains a human readable name for the quick fix.StringgetNewline()Contains the new line to be inserted.StringgetReplacement()Contains the new token in the case of token replacement.StringgetSearch()Contains the search token in the case of token replacement.StringgetTransformationID()Contains the implementation ID for transformation fixes.QuickfixTypegetType()Contains the type of the quickfix (eg, token substitution)..
-
-
-
Method Detail
-
getType
QuickfixType getType()
Contains the type of the quickfix (eg, token substitution)..
-
getName
String getName()
Contains a human readable name for the quick fix.
-
getSearch
String getSearch()
Contains the search token in the case of token replacement.
-
getReplacement
String getReplacement()
Contains the new token in the case of token replacement.
-
getNewline
String getNewline()
Contains the new line to be inserted.
-
getTransformationID
String getTransformationID()
Contains the implementation ID for transformation fixes.
-
getFile
File getFile()
-
-