📄 xmlconfiguration.java
字号:
/****************************************************************************
* Package : com.ecSolutions.ecAppServer.config
* File : XmlConfiguration.java
* Create Date : 2007-7-20
* Author : Steven Chen
*
* Copyright(C) 2006 ecSolutions(shanghai) Co.,Limited.All Rights Reserved.
*
***************************************************************************/
package com.ecSolutions.ecAppServer.config;
import com.ecSolutions.ecAppServer.Configuration;
import com.ecSolutions.ecAppServer.ecAppServerConfigException;
public class XmlConfiguration implements Configuration {
public String getString(String param) throws ecAppServerConfigException {
// TODO Auto-generated method stub
return null;
}
public String getString(String param, String defaultVal) {
// TODO Auto-generated method stub
return null;
}
public int getInt(String param) throws ecAppServerConfigException {
// TODO Auto-generated method stub
return 0;
}
public int getInt(String param, int defaultVal) {
// TODO Auto-generated method stub
return 0;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -