protected StrokeBorder getObject() { return new StrokeBorder(new BasicStroke(0), Color.WHITE); }
protected StrokeBorder getAnotherObject() { return null; // TODO: could not update property //return new StrokeBorder(new BasicStroke(1)); }
public static Border createStrokeBorder(BasicStroke stroke) { return new StrokeBorder(stroke); }
public static Border createStrokeBorder(BasicStroke stroke, Paint paint) { return new StrokeBorder(stroke, paint); }