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

📄 servicespoa.java

📁 直接放在eclipse环境下
💻 JAVA
字号:
package org.objectweb.ccm.demo3;
/**
 *	Generated from IDL definition of interface "Services"
 *	@author JacORB IDL compiler 
 */

public abstract class ServicesPOA	extends org.omg.PortableServer.Servant
	implements org.omg.CORBA.portable.InvokeHandler, org.objectweb.ccm.demo3.ServicesOperations
{
	static private final java.util.Hashtable m_opsHash = new java.util.Hashtable();
	static
	{
		m_opsHash.put ( "display", new java.lang.Integer(0));
	}
	private String[] ids = {"IDL:ccm.objectweb.org/demo3/Services:1.0"};
	public org.objectweb.ccm.demo3.Services _this()
	{
		return org.objectweb.ccm.demo3.ServicesHelper.narrow(_this_object());
	}
	public org.objectweb.ccm.demo3.Services _this(org.omg.CORBA.ORB orb)
	{
		return org.objectweb.ccm.demo3.ServicesHelper.narrow(_this_object(orb));
	}
	public org.omg.CORBA.portable.OutputStream _invoke(String method, org.omg.CORBA.portable.InputStream _input, org.omg.CORBA.portable.ResponseHandler handler)
		throws org.omg.CORBA.SystemException
	{
		org.omg.CORBA.portable.OutputStream _out = null;
		// do something
		// quick lookup of operation
		java.lang.Integer opsIndex = (java.lang.Integer)m_opsHash.get ( method );
		if ( null == opsIndex )
			throw new org.omg.CORBA.BAD_OPERATION(method + " not found");
		switch ( opsIndex.intValue() )
		{
			case 0: // display
			{
				java.lang.String _arg0=_input.read_string();
				_out = handler.createReply();
				display(_arg0);
				break;
			}
		}
		return _out;
	}
	public String[] _all_interfaces(org.omg.PortableServer.POA poa, byte[] obj_id)
	{
		return ids;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -