mp = new MattePainter(Color.GRAY);
ShapePainter sp = new ShapePainter(
ShapeUtils.generatePolygon(30, 50, 45, true), Color.RED);
sp.setStyle(ShapePainter.Style.FILLED);
sp.setBorderPaint(Color.BLUE);
ShadowPathEffect starShadow = new ShadowPathEffect();
starShadow.setOffset(new Point(1,1));
starShadow.setEffectWidth(5);
sp.setAreaEffects(starShadow);
tp = new TextPainter("Coming Soon!", new Font("SansSerif", Font.PLAIN, 12), Color.WHITE);
cp = new CompoundPainter<Object>(mp, sp, tp);
node.add(createInfoNode("Coming Soon badge", cp));