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 voidaddActionListener(ActionListener l)voidaddChangeListener(ChangeListener l)intgetValue()booleanisAdjusting()voidremoveActionListener(ActionListener l)voidremoveChangeListener(ChangeListener l)voidsetAdjusting(boolean adjusting)voidsetValue(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)
-
-