facetdescriptionhelper.java
来自「直接放在eclipse环境下」· Java 代码 · 共 38 行
JAVA
38 行
package org.omg.Components;
/**
* Generated from IDL definition of valuetype "FacetDescription"
* @author JacORB IDL compiler
*/
public abstract class FacetDescriptionHelper
{
private static org.omg.CORBA.TypeCode type = null;
public static void insert (org.omg.CORBA.Any a, org.omg.Components.FacetDescription v)
{
a.insert_Value (v, v._type());
}
public static org.omg.Components.FacetDescription extract (org.omg.CORBA.Any a)
{
return (org.omg.Components.FacetDescription)a.extract_Value();
}
public static org.omg.CORBA.TypeCode type()
{
if (type == null)
type = org.omg.CORBA.ORB.init().create_value_tc ("IDL:omg.org/Components/FacetDescription:1.0", "FacetDescription", (short)0, null, new org.omg.CORBA.ValueMember[] {new org.omg.CORBA.ValueMember ("", "IDL::1.0", "FacetDescription", "1.0", org.omg.CORBA.ORB.init().create_interface_tc("IDL:omg.org/CORBA/Object:1.0","Object"), null, (short)1)});
return type;
}
public static String id()
{
return "IDL:omg.org/Components/FacetDescription:1.0";
}
public static org.omg.Components.FacetDescription read (org.omg.CORBA.portable.InputStream is)
{
return (org.omg.Components.FacetDescription)((org.omg.CORBA_2_3.portable.InputStream)is).read_value ("IDL:omg.org/Components/FacetDescription:1.0");
}
public static void write (org.omg.CORBA.portable.OutputStream os, org.omg.Components.FacetDescription val)
{
((org.omg.CORBA_2_3.portable.OutputStream)os).write_value (val, "IDL:omg.org/Components/FacetDescription:1.0");
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?