-
Notifications
You must be signed in to change notification settings - Fork 32
StarRating
lcaron edited this page Jul 7, 2015
·
1 revision

A simple star rating toolbar that allows the user to rate anything.
This is very simple : you instantiate a StarRating widget, you set the size of stars (SMALL,BIG) and the number of stars :
final StarRating sr = new StarRating(shell, SWT.NONE);
sr.setSizeOfStars(SIZE.SMALL);
sr.setMaxNumberOfStars(10);
And voilà !
An example called StarRatingSnippet.java is located in the directory src/test/java/org/mihalis/opal/starRating/.
This example is also available here :