use of limelight.styles.RichStyle in project limelight by slagyr.
the class StyledTextTest method makeSampleStyles.
private void makeSampleStyles() {
styles = new HashMap<String, RichStyle>();
style1 = new RichStyle();
style2 = new RichStyle();
styles.put("fizz", style1);
styles.put("bang", style2);
defaultStyle = new RichStyle();
}
Aggregations