00001 /******************************************************************************* 00002 * Copyright (c) 2008-2014 SWTChart project. All rights reserved. 00003 * 00004 * This code is distributed under the terms of the Eclipse Public License v1.0 00005 * which is available at http://www.eclipse.org/legal/epl-v10.html 00006 *******************************************************************************/ 00007 package org.swtchart.internal; 00008 00012 public class ChartLayoutData { 00013 00015 public int widthHint; 00016 00018 public int heightHint; 00019 00028 public ChartLayoutData(int widthHint, int heightHint) { 00029 this.widthHint = widthHint; 00030 this.heightHint = heightHint; 00031 } 00032 }