Uses of Interface
com.tagtraum.beatunes.inspection.Issue
-
Packages that use Issue Package Description com.tagtraum.beatunes Application for analyzing songs and sorting them based on how they match each other.com.tagtraum.beatunes.action.standard Standard actions like "Create Playlist".com.tagtraum.beatunes.inspection Allows the inspection of songs for issues.com.tagtraum.beatunes.songtable.renderer Table cell renderers. -
-
Uses of Issue in com.tagtraum.beatunes
Fields in com.tagtraum.beatunes with type parameters of type Issue Modifier and Type Field Description static Property<Issue>
Property. ISSUE_PROPERTY
-
Uses of Issue in com.tagtraum.beatunes.action.standard
Constructors in com.tagtraum.beatunes.action.standard with parameters of type Issue Constructor Description ShowIssueAction(BeaTunes beaTunes, Issue issue)
-
Uses of Issue in com.tagtraum.beatunes.inspection
Classes in com.tagtraum.beatunes.inspection with type parameters of type Issue Modifier and Type Class Description class
IgnoreIssueSolution<T extends Issue>
Superclass for all solutions that effectively ignore the issue.interface
Solution<T extends Issue>
A solution to anIssue
.Methods in com.tagtraum.beatunes.inspection that return Issue Modifier and Type Method Description protected Issue
AlbumArtistTypoInspector. createIssue(List<String> similarAttributes)
protected Issue
ArtistTypoInspector. createIssue(List<String> similarAttributes)
protected abstract Issue
TypoInspector. createIssue(List<String> similarAttributes)
Creates an issue for a possible typo.Issue<?>
DifferentLanguageInspector.DifferentLanguageSolution. getIssue()
Methods in com.tagtraum.beatunes.inspection that return types with arguments of type Issue Modifier and Type Method Description ListModel<Issue<? extends Inspector>>
Inspector. getIssueModel()
ListModel<Issue<?>>
InspectorCategory. getIssueModel()
List<Issue>
Inspection. getIssues(Long songId)
List<Issue<?>>
Inspector. getIssues()
List<Issue<?>>
Inspector. getIssues(Long songId)
List<Issue<?>>
InspectorCategory. getIssues()
List<Issue<?>>
InspectorCategory. getIssues(Long songId)
Methods in com.tagtraum.beatunes.inspection with parameters of type Issue Modifier and Type Method Description protected void
Inspector. addIssue(Issue<?> issue)
To be used by subclasses to add a single issue.protected void
InspectorCategory. addIssue(Issue issue)
boolean
Inspection. ignore(Issue<?> issue)
Returns true, if the app is configured to ignore certain kinds of songs.void
Inspector. removeIssue(Issue<?> issue)
void
InspectorCategory. removeIssue(Issue issue)
void
InspectorView. select(Issue issue)
Method parameters in com.tagtraum.beatunes.inspection with type arguments of type Issue Modifier and Type Method Description protected void
Inspector. addIssues(Collection<Issue<?>> issues)
To be used by subclasses to add multiple issues.protected void
InspectorCategory. addIssues(Collection<Issue<?>> issues)
void
Inspector. removeIssues(Collection<Issue<?>> issues)
void
InspectorCategory. removeIssues(Collection<Issue<?>> issues)
Constructors in com.tagtraum.beatunes.inspection with parameters of type Issue Constructor Description CorrectSortNameSolution(Issue issue, String name, String sortName)
DifferentLanguageInputDialogSolution(Issue issue)
DifferentLanguageSolution(Issue issue)
DifferentLanguageSolution(Issue issue, String language)
IgnoreMissingTrackCountSolution(Issue issue)
IgnoreRareGenreSolution(Issue issue, String genre)
MultiAlbumArtistSolution(Issue issue, String album, Set<String> albumArtists)
MultiGenreArtistSolution(Issue issue, String artist, Set<String> genres)
MultiLanguageArtistSolution(Issue issue, String artist, Set<String> languages)
MultiYearAlbumSolution(Issue issue, String artist, String album, Set<Short> years)
NotMiscapitalizedSolution(Issue issue, String name)
NoTypoSolution(Issue issue, List<String> attributes)
-
Uses of Issue in com.tagtraum.beatunes.songtable.renderer
Methods in com.tagtraum.beatunes.songtable.renderer that return Issue Modifier and Type Method Description Issue
BasicTableCellRenderer. getIssue()
Issue
PanelTableCellRenderer. getIssue()
Issue
StringTableCellRenderer. getIssue()
Methods in com.tagtraum.beatunes.songtable.renderer that return types with arguments of type Issue Modifier and Type Method Description protected List<Issue>
BasicTableCellRenderer. getIssues(Object value)
protected List<Issue>
PanelTableCellRenderer. getIssues(Object value)
protected List<Issue>
RatingTableCellRenderer. getIssues(Object value)
protected List<Issue>
StringTableCellRenderer. getIssues(Object value)
-