Package com.tagtraum.beatunes.inspection
Class DifferentLanguageInspector.MostUsedLanguageSolution
- java.lang.Object
-
- com.tagtraum.beatunes.inspection.DifferentLanguageInspector.DifferentLanguageSolution
-
- com.tagtraum.beatunes.inspection.DifferentLanguageInspector.MostUsedLanguageSolution
-
- Enclosing class:
- DifferentLanguageInspector
public static class DifferentLanguageInspector.MostUsedLanguageSolution extends DifferentLanguageInspector.DifferentLanguageSolution
-
-
Constructor Summary
Constructors Constructor Description MostUsedLanguageSolution(com.tagtraum.beatunes.inspection.DifferentLanguageInspector.DifferentLanguageIssue issue, String language)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getClassDescription()
Returns a common description for this class of solution.String
getClassId()
Id for a class of solutions.String
getDescription()
Description of this solution.String
getId()
Unique id for this solution instance.boolean
isPreferred()
Indicates to the user whether this solution is a preferred solution, i.e.-
Methods inherited from class com.tagtraum.beatunes.inspection.DifferentLanguageInspector.DifferentLanguageSolution
createCallable, getApplication, getIssue, getLanguage, setLanguage
-
-
-
-
Constructor Detail
-
MostUsedLanguageSolution
public MostUsedLanguageSolution(com.tagtraum.beatunes.inspection.DifferentLanguageInspector.DifferentLanguageIssue issue, String language)
-
-
Method Detail
-
isPreferred
public boolean isPreferred()
Description copied from interface:Solution
Indicates to the user whether this solution is a preferred solution, i.e. will most likely lead to the desired, correct result. Preferred solutions may be specially marked in the UI by the application.- Returns:
- true, if this is a preferred solution.
-
getDescription
public String getDescription()
Description copied from interface:Solution
Description of this solution. You may use HTML, but no enclosing <html> tags. E.g.:My <em>super</em> solution.
- Specified by:
getDescription
in interfaceSolution<Issue>
- Overrides:
getDescription
in classDifferentLanguageInspector.DifferentLanguageSolution
- Returns:
- description
- See Also:
Solution.getClassDescription()
-
getClassDescription
public String getClassDescription()
Description copied from interface:Solution
Returns a common description for this class of solution. This is used when the same kind (or class) of solution should be used for a collection of issues. In other words, the user selects multiple issues and wants them all solved in the same way. This implies, that there cannot be any user interaction.
If this solution does not make any sense as a class solution, this method must returnnull
.- Specified by:
getClassDescription
in interfaceSolution<Issue>
- Overrides:
getClassDescription
in classDifferentLanguageInspector.DifferentLanguageSolution
- Returns:
- description contains description for a whole collection of issues, not an individual one or null, if this solution cannot be applied to multiple issues at once (because it is too specific for a given issue)
- See Also:
Solution.getDescription()
,Solution.getClassId()
-
getId
public String getId()
Description copied from interface:Solution
Unique id for this solution instance. May be used in hyperlinks.- Specified by:
getId
in interfaceSolution<Issue>
- Overrides:
getId
in classDifferentLanguageInspector.DifferentLanguageSolution
- Returns:
- unique id for this issue, which can be used in hyperlinks
- See Also:
Solution.getClassId()
-
getClassId
public String getClassId()
Description copied from interface:Solution
Id for a class of solutions. If this solutions cannot be applied for multiple issues at once, this method must returnnull
.- Specified by:
getClassId
in interfaceSolution<Issue>
- Overrides:
getClassId
in classDifferentLanguageInspector.DifferentLanguageSolution
- Returns:
- id for this solution's class - typically unique per solutions class. Default value (if used) should be the actual class name, i.e. solution.getClass().getName()
- See Also:
Solution.getClassDescription()
-
-