/* This file is part of Green.
*
* Copyright (C) 2005 The Research Foundation of State University of New York
* All Rights Under Copyright Reserved, The Research Foundation of S.U.N.Y.
*
* Green is free software, licensed under the terms of the Eclipse
* Public License, version 1.0. The license is available at
* http://www.eclipse.org/legal/epl-v10.html
*/
/**
*
*/
package edu.buffalo.cse.green.constants;
/** This is a basic constants class and nested subclasses designed to hold
* values with better descriptive names attached to them.
*
* @author Brian McSkimming
* @author zgwang
*
*/
public class CodeConstants {
public class Model {
public static final int DEFAULT_BOX_WIDTH = 200;
public static final int DEFAULT_BOX_HEIGHT = 200;
public static final int MAX_BOX_WIDTH = 600;
public static final int MAX_BOX_HEIGHT = 800;
public static final int DEFAULT_X_LOCATION = 50;
public static final int DEFAULT_Y_LOCATION = 50;
}
}