1 26 27 package org.nightlabs.editor2d.render; 28 29 import java.awt.BasicStroke ; 30 import java.awt.Stroke ; 31 32 33 34 public class BaseShapeRenderer 35 extends RendererImpl 36 { 37 public static final Stroke DEFAULT_STROKE = new BasicStroke (); 38 39 protected Stroke stroke; 40 public BaseShapeRenderer() 41 { 42 super(); 43 } 44 45 protected void init() 46 { 47 super.init(); 48 stroke = DEFAULT_STROKE; 49 } 50 51 } 52 | Popular Tags |