1. /*
  2. * @(#)IDLType.java 1.14 01/11/29
  3. *
  4. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. /*
  8. * File: ./org/omg/CORBA/IDLType.java
  9. * From: ./ir.idl
  10. * Date: Fri Aug 28 16:03:31 1998
  11. * By: idltojava Java IDL 1.2 Aug 11 1998 02:00:18
  12. */
  13. package org.omg.CORBA;
  14. /**
  15. * An abstract interface inherited by all Interface Repository
  16. * (IR) objects that represent OMG IDL types. It provides access
  17. * to the <code>TypeCode</code> object describing the type and is used in defining the
  18. * other interfaces wherever definitions of <code>IDLType</code> must be referenced.
  19. */
  20. public interface IDLType
  21. extends org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity,
  22. org.omg.CORBA.IRObject {
  23. /**
  24. * Retrieves the <code>TypeCode</code> object describing the type of this object.
  25. * @return the <code>TypeCode</code> object describing this object
  26. */
  27. org.omg.CORBA.TypeCode type();
  28. }