⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xmlconfiguration.java

📁 银行项目为后台socket通信写的程序
💻 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 + -