java/cewolf-1.0/src/main/java/de/laures/cewolf/taglib/PlotConstants.java
changeset 1 639991d0808a
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/java/cewolf-1.0/src/main/java/de/laures/cewolf/taglib/PlotConstants.java	Sat Feb 28 21:31:02 2009 +0100
     1.3 @@ -0,0 +1,45 @@
     1.4 +/* ================================================================
     1.5 + * Cewolf : Chart enabling Web Objects Framework
     1.6 + * ================================================================
     1.7 + *
     1.8 + * Project Info:  http://cewolf.sourceforge.net
     1.9 + * Project Lead:  Guido Laures (guido@laures.de);
    1.10 + *
    1.11 + * (C) Copyright 2002, by Guido Laures and contributers
    1.12 + *
    1.13 + * This library is free software; you can redistribute it and/or modify it under the terms
    1.14 + * of the GNU Lesser General Public License as published by the Free Software Foundation;
    1.15 + * either version 2.1 of the License, or (at your option) any later version.
    1.16 + *
    1.17 + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
    1.18 + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    1.19 + * See the GNU Lesser General Public License for more details.
    1.20 + *
    1.21 + * You should have received a copy of the GNU Lesser General Public License along with this
    1.22 + * library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
    1.23 + * Boston, MA 02111-1307, USA.
    1.24 + */
    1.25 +
    1.26 +package de.laures.cewolf.taglib;
    1.27 +
    1.28 +/**
    1.29 + * Contains some base constants to avoid explicit dependancy to concrete Plot 
    1.30 + * implementation's constant values. The constants of this class also serve as
    1.31 + * the base contract for data exchange between sub packages.
    1.32 + * @author  Chris McCann
    1.33 + */
    1.34 +public interface PlotConstants {
    1.35 +    int XY_AREA = 0;
    1.36 +    int XY_LINE = 1;
    1.37 +    int XY_SHAPES_AND_LINES = 2;
    1.38 +    int SCATTER = 3;
    1.39 +    int XY_VERTICAL_BAR = 4;
    1.40 +    int STEP = 5;
    1.41 +    int CANDLESTICK = 6;
    1.42 +    int HIGH_LOW = 7;
    1.43 +    int SIGNAL = 8;
    1.44 +    int VERTICAL_BAR = 9;
    1.45 +    int AREA = 10;
    1.46 +    int LINE = 11;
    1.47 +    int SHAPES_AND_LINES = 13;
    1.48 +}