📄 bcinit.java
字号:
package jgd.ebridgechina.bizComp;
/**
* The model is build to make transmission between Salesforce.com and
* client side efficiently and effectively. Thereinto, the prefix of
* any Class is "bc" which means Business Companion.
*
* Company: DigitalChina
* Author:Guowei
* Tel:(86)01082707073
* Version: 0.1
* Date:2007-6-6
*
*/
/**
*
* The initial class for configuration
* @author guowei
*
*/
public class bcInit {
/**
* To initialize whole setup item
* @param isdebug if show the whole debug information
* @param MaxLead maxium amount of new leads created at one time
* @param MaxOpportunity maxium amount of new opportunities created at one time
*/
public static void init(boolean isdebug,int MaxLead,int MaxOpportunity){
bcConstant.isDebug = isdebug;
bcConstant.maxLead = MaxLead;
bcConstant.maxOpportunity = MaxOpportunity;
}
/**
* To initialize static class bcConstant by default setup
*
*/
public static void init(){
init(true,200,200);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -