blob: aa5e96a5350bd3ed934e51bb707325745a462d44 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010-2011 Austin Riddle, and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Austin Riddle - initial API, implementation and documentation
* Cole Markham (Texas Center for Applied Technology) -
* widget data passing to client side
******************************************************************************/
package org.eclipse.rap.rwt.visualization.jit.internal.barchartkit;
import org.eclipse.rap.rwt.visualization.jit.BarChart;
import org.eclipse.rap.rwt.visualization.jit.internal.JITWidgetLCA;
public class BarChartLCA extends JITWidgetLCA {
@Override
public Class<?> getWidgetType() {
return BarChart.class;
}
}