xmlconfiguration.java
来自「银行项目为后台socket通信写的程序」· Java 代码 · 共 39 行
JAVA
39 行
/****************************************************************************
* 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 + =
减小字号Ctrl + -
显示快捷键?