/* * 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 Dot */ public class Dot extends BaseDot { public Dot() { this(null); } public Dot(Number value) { super("dot", value); } }