/* * Ext GWT - Ext for GWT * Copyright(c) 2007-2009, Ext JS, LLC. * licensing@extjs.com * * http://extjs.com/license */ package com.extjs.gxt.charts.client.model.charts.dots; /** * OFC Hollow Dot */ public class HollowDot extends BaseDot { public HollowDot() { this(null); } public HollowDot(Number value) { super("hollow-dot", value); } }