001: /*
002: * BEGIN_HEADER - DO NOT EDIT
003: *
004: * The contents of this file are subject to the terms
005: * of the Common Development and Distribution License
006: * (the "License"). You may not use this file except
007: * in compliance with the License.
008: *
009: * You can obtain a copy of the license at
010: * https://open-esb.dev.java.net/public/CDDLv1.0.html.
011: * See the License for the specific language governing
012: * permissions and limitations under the License.
013: *
014: * When distributing Covered Code, include this CDDL
015: * HEADER in each file and include the License file at
016: * https://open-esb.dev.java.net/public/CDDLv1.0.html.
017: * If applicable add the following below this CDDL HEADER,
018: * with the fields enclosed by brackets "[]" replaced with
019: * your own identifying information: Portions Copyright
020: * [year] [name of copyright owner]
021: */
022:
023: /*
024: * @(#)JFChartConstants.java
025: * Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
026: *
027: * END_HEADER - DO NOT EDIT
028: */
029: package org.openesb.tools.extchart.property;
030:
031: /**
032: *
033: * @author rdwivedi
034: */
035: public interface JFChartConstants {
036:
037: public static String BAR_CHART = "barChart";
038: public static String PIE_CHART = "pieChart";
039: public static String XY_CHART = "xyChart";
040: public static String METER_CHART = "meterChart";
041:
042: public static String TITLE = "_title";
043: public static String CHART_TYPE = "_chartType";
044: public static String X_AXIS_TITLE = "_xAxisTitle";
045: public static String Y_AXIS_TITLE = "_yAxisTitle";
046:
047: public static String ENABLE_3D = "_enable3D";
048: public static String CHART_QUERY = "_chartQuery";
049: public static String CHART_REFRESH = "_refreshRate";
050:
051: public static String CATEGORY_COLUMN_NAME = "_categoryColName";
052: public static String CATEGORY_COLUMN_NAME_DISPLAY = "Category Column";
053: public static String SERIES_COLUMN_NAME = "_seriesColName";
054: public static String SERIES_COLUMN_NAME_DISPLAY = "Series Column";
055: public static String VALUE_COLUMN_NAME = "_valueColName";
056: public static String VALUE_COLUMN_NAME_DISPLAY = "Value Column";
057:
058: public static String CHART_DB_TABLE_NAME = "_chartDBTableName";
059: public static String NO_COLUMN = "_ncs";
060:
061: public static String X_COLUMN_NAME = "_xColName";
062: public static String Y_COLUMN_NAME = "_yColName";
063: public static String X_COLUMN_NAME_DISPLAY = "X Axis Column";
064: public static String Y_COLUMN_NAME_DISPLAY = "Y Axis Column";
065:
066: // Temp way to identify the chart UI props , and data props
067: public static String CHART_PROPERTIES = "_chartAllProps";
068: public static String CHART_COMMON_PROPERTIES = "_chartCProps";
069: public static String CHART_SPECIFIC_PROPERTIES = "_chartSProps";
070: public static String CHART_DB_PROPERTIES = "_chartDBProps";
071: public static String CHART_BAR_PROPERTIES = "_chartbarProps";
072:
073: // Data Set
074: public static String DATASET_TYPE = "_dataSetType";
075: public static String DATASET_TYPE_SELECTED = "_selectedDataSetType";
076:
077: public static String XY_DATASET = "_xyDataSet";
078: public static String XY_DATASET_DISPLAY = "XY Dataset";
079:
080: public static String PIE_DATASET = "_pieDataSet";
081: public static String PIE_DATASET_DISPLAY = "Pie Dataset";
082:
083: public static String VALUE_DATASET = "_valueDataSet";
084: public static String VALUE_DATASET_DISPLAY = "Single Value Dataset";
085:
086: public static String CATEGORY_DATASET = "_categoryDataSet";
087: public static String CATEGORY_DATASET_DISPLAY = "Category Dataset";
088:
089: public static String IEP_GROUP = "_iepGrp";
090: public static String IEP_SELECTED = "_iepSelected";
091:
092: public static String IEP_DB_TABLE_GROUP = "_dbGroup";
093: public static String IEP_DB_TABLE_SELECTED = "_dbTableSelected";
094:
095: public static String DB_CONNECTION_PROPERTIES = "_dbConnectionProps";
096: public static String DB_URL = "_dbURL";
097: public static String DB_UID = "_dbUID";
098: public static String DB_UPWD = "_dbUPWD";
099:
100: public static String CHARTING_TYPE_PROPERTIES = "_chartingType";
101: public static String CHARTING_TYPE_SELECTED = "_chartingTS";
102: public static String IEP_BASED_CHARTING = "_iepBased";
103: public static String DB_TABLE_BASED_CHARTING = "_tableBased";
104:
105: public static String CHART_TYPES_PROPERTIES = "_chartTypes";
106: public static String SELECT_CHART_TYPE = "_chartTypeSelected";
107:
108: public static String DATASOURCE_SELECTED = "_dataSourceSelected";
109:
110: }
|