taggedprofiletemplatefactoryfinderimpl.java

来自「JAVA 所有包」· Java 代码 · 共 36 行

JAVA
36
字号
/* * @(#)TaggedProfileTemplateFactoryFinderImpl.java	1.6 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.impl.ior;import com.sun.corba.se.spi.ior.Identifiable ;import com.sun.corba.se.spi.orb.ORB ;import com.sun.corba.se.impl.ior.IdentifiableFactoryFinderBase ;import org.omg.CORBA_2_3.portable.InputStream ;import org.omg.CORBA.INTERNAL ;/** * @author  */public class TaggedProfileTemplateFactoryFinderImpl extends    IdentifiableFactoryFinderBase {    public TaggedProfileTemplateFactoryFinderImpl( ORB orb )    { 	super( orb ) ;    }    public Identifiable handleMissingFactory( int id, InputStream is)     {	throw wrapper.taggedProfileTemplateFactoryNotFound( new Integer(id) ) ;    }}

⌨️ 快捷键说明

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