Package com.tagtraum.beatunes.songinfo
Interface Rating.RatingModel
-
- All Known Implementing Classes:
Rating.DefaultRatingModel
- Enclosing class:
- Rating
public static interface Rating.RatingModel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addActionListener(ActionListener l)
void
addChangeListener(ChangeListener l)
int
getValue()
boolean
isAdjusting()
void
removeActionListener(ActionListener l)
void
removeChangeListener(ChangeListener l)
void
setAdjusting(boolean adjusting)
void
setValue(int rating)
-
-
-
Method Detail
-
setValue
void setValue(int rating)
-
isAdjusting
boolean isAdjusting()
-
setAdjusting
void setAdjusting(boolean adjusting)
-
getValue
int getValue()
-
addChangeListener
void addChangeListener(ChangeListener l)
-
removeChangeListener
void removeChangeListener(ChangeListener l)
-
addActionListener
void addActionListener(ActionListener l)
-
removeActionListener
void removeActionListener(ActionListener l)
-
-