?? 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 + -