Ejemplo n.º 1
0
 public void setBgcolor(String clr) {
   if (!properties.containsKey(PROPERTY_BGCOLOR)) {
     properties.put(PROPERTY_BGCOLOR, renderable.getBgcolor());
   }
   renderable.setBgcolor(clr);
   onRenderSetProperties.put(PROPERTY_BGCOLOR, renderable.getBgcolor());
 }
Ejemplo n.º 2
0
 public String getBgcolor() {
   return renderable.getBgcolor();
 }