Java 类org.omg.CORBA.TypeCodeHolder 实例源码

项目:javify    文件:gnuDynAny.java   
/** {@inheritDoc} */
public TypeCode get_typecode() throws TypeMismatch
{
  try
    {
      return ((TypeCodeHolder) holder).value;
    }
  catch (ClassCastException cex)
    {
      TypeMismatch m = new TypeMismatch();
      m.initCause(cex);
      throw m;
    }
}
项目:javify    文件:gnuDynAny.java   
/** {@inheritDoc} */
public void insert_typecode(TypeCode a_x) throws InvalidValue, TypeMismatch
{
  try
    {
      ((TypeCodeHolder) holder).value = a_x;
      valueChanged();
    }
  catch (ClassCastException cex)
    {
      TypeMismatch t = new TypeMismatch();
      t.initCause(cex);
      throw t;
    }
}
项目:jvm-stm    文件:gnuDynAny.java   
/** {@inheritDoc} */
public TypeCode get_typecode() throws TypeMismatch
{
  try
    {
      return ((TypeCodeHolder) holder).value;
    }
  catch (ClassCastException cex)
    {
      TypeMismatch m = new TypeMismatch();
      m.initCause(cex);
      throw m;
    }
}
项目:jvm-stm    文件:gnuDynAny.java   
/** {@inheritDoc} */
public void insert_typecode(TypeCode a_x) throws InvalidValue, TypeMismatch
{
  try
    {
      ((TypeCodeHolder) holder).value = a_x;
      valueChanged();
    }
  catch (ClassCastException cex)
    {
      TypeMismatch t = new TypeMismatch();
      t.initCause(cex);
      throw t;
    }
}
项目:JamVM-PH    文件:gnuDynAny.java   
/** {@inheritDoc} */
public TypeCode get_typecode() throws TypeMismatch
{
  try
    {
      return ((TypeCodeHolder) holder).value;
    }
  catch (ClassCastException cex)
    {
      TypeMismatch m = new TypeMismatch();
      m.initCause(cex);
      throw m;
    }
}
项目:JamVM-PH    文件:gnuDynAny.java   
/** {@inheritDoc} */
public void insert_typecode(TypeCode a_x) throws InvalidValue, TypeMismatch
{
  try
    {
      ((TypeCodeHolder) holder).value = a_x;
      valueChanged();
    }
  catch (ClassCastException cex)
    {
      TypeMismatch t = new TypeMismatch();
      t.initCause(cex);
      throw t;
    }
}
项目:classpath    文件:gnuDynAny.java   
/** {@inheritDoc} */
public TypeCode get_typecode() throws TypeMismatch
{
  try
    {
      return ((TypeCodeHolder) holder).value;
    }
  catch (ClassCastException cex)
    {
      TypeMismatch m = new TypeMismatch();
      m.initCause(cex);
      throw m;
    }
}
项目:classpath    文件:gnuDynAny.java   
/** {@inheritDoc} */
public void insert_typecode(TypeCode a_x) throws InvalidValue, TypeMismatch
{
  try
    {
      ((TypeCodeHolder) holder).value = a_x;
      valueChanged();
    }
  catch (ClassCastException cex)
    {
      TypeMismatch t = new TypeMismatch();
      t.initCause(cex);
      throw t;
    }
}
项目:javify    文件:gnuAny.java   
public TypeCode extract_TypeCode()
                          throws BAD_OPERATION
{
  check(TCKind._tk_TypeCode);
  return ((TypeCodeHolder) has).value;
}
项目:jvm-stm    文件:gnuAny.java   
public TypeCode extract_TypeCode()
                          throws BAD_OPERATION
{
  check(TCKind._tk_TypeCode);
  return ((TypeCodeHolder) has).value;
}
项目:JamVM-PH    文件:gnuAny.java   
public TypeCode extract_TypeCode()
                          throws BAD_OPERATION
{
  check(TCKind._tk_TypeCode);
  return ((TypeCodeHolder) has).value;
}
项目:classpath    文件:gnuAny.java   
public TypeCode extract_TypeCode()
                          throws BAD_OPERATION
{
  check(TCKind._tk_TypeCode);
  return ((TypeCodeHolder) has).value;
}