|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /home/queenjbs/www/FusionChart/Code/J2EE/SourceCode/FCHelper/com/fusioncharts/helper/ |
Upload File : |
/**
*
*/
package com.fusioncharts.helper;
/**
* @author InfoSoft Global (P) Ltd.
*
*/
public enum FCParams {
/**
* Enum for the parameters to the FusionCharts JS constructor
*
* @author InfoSoft Global (P) Ltd.
*
*/
SWFURL("swfUrl"), WIDTH("width"), HEIGHT("height"), RENDERAT("renderAt"), RENDERER(
"renderer"), DATASOURCE("dataSource"), DATAFORMAT("dataFormat"), ID(
"id"), LANG("lang"), DEBUGMODE("debugMode"), REGISTERWITHJS(
"registerWithJS"), DETECTFLASHVERSION("detectFlashVersion"), AUTOINSTALLREDIRECT(
"autoInstallRedirect"), WMODE("wMode"), SCALEMODE("scaleMode"), MENU(
"menu"), BGCOLOR("bgColor"), QUALITY("quality");
String paramName = "";
private FCParams(String paramName) {
this.paramName = paramName;
}
public String getParamName() {
return paramName;
}
}