本文整理汇总了Java中org.omg.PortableInterceptor.IORInfo类的典型用法代码示例。如果您正苦于以下问题:Java IORInfo类的具体用法?Java IORInfo怎么用?Java IORInfo使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
IORInfo类属于org.omg.PortableInterceptor包,在下文中一共展示了IORInfo类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: components_established
import org.omg.PortableInterceptor.IORInfo; //导入依赖的package包/类
/**
* Call this method for all registered CORBA 3.0 interceptors.
*
* @throws OBJ_ADAPTER minor 6 on any failure (as defined by OMG specs).
*/
public void components_established(IORInfo info)
{
for (int i = 0; i < interceptors.length; i++)
{
try
{
if (interceptors[i] instanceof IORInterceptor_3_0Operations)
{
((IORInterceptor_3_0Operations) interceptors[i]).
components_established(info);
}
}
catch (Exception exc)
{
OBJ_ADAPTER oa = new OBJ_ADAPTER("components_established failed");
oa.initCause(exc);
oa.minor = 6 | OMGVMCID.value;
throw oa;
}
}
}
示例2: components_established
import org.omg.PortableInterceptor.IORInfo; //导入依赖的package包/类
/**
* Call this method for all registered CORBA 3.0 interceptors.
*
* @throws OBJ_ADAPTER minor 6 on any failure (as defined by OMG specs).
*/
public void components_established(IORInfo info)
{
for (int i = 0; i < interceptors.length; i++)
{
try
{
if (interceptors[i] instanceof IORInterceptor_3_0Operations)
{
((IORInterceptor_3_0Operations) interceptors[i]).
components_established(info);
}
}
catch (Exception exc)
{
OBJ_ADAPTER oa = new OBJ_ADAPTER("components_established failed");
oa.initCause(exc);
oa.minor = 6 | OMGVMCID.value;
throw oa;
}
}
}
示例3: establish_components
import org.omg.PortableInterceptor.IORInfo; //导入依赖的package包/类
/**
* Call this method for all registered interceptors.
*/
public void establish_components(IORInfo info)
{
for (int i = 0; i < interceptors.length; i++)
{
try
{
interceptors [ i ].establish_components(info);
}
catch (Exception exc)
{
// OMG states we should ignore.
}
}
}