1. package org.omg.IOP;
  2. /**
  3. * org/omg/IOP/TaggedComponent.java .
  4. * Generated by the IDL-to-Java compiler (portable), version "3.2"
  5. * from ../../../../src/share/classes/org/omg/PortableInterceptor/IOP.idl
  6. * Wednesday, September 15, 2004 10:28:42 AM GMT
  7. */
  8. public final class TaggedComponent implements org.omg.CORBA.portable.IDLEntity
  9. {
  10. /** The tag, represented as a component id. */
  11. public int tag = (int)0;
  12. /** The component data associated with the component id. */
  13. public byte component_data[] = null;
  14. public TaggedComponent ()
  15. {
  16. } // ctor
  17. public TaggedComponent (int _tag, byte[] _component_data)
  18. {
  19. tag = _tag;
  20. component_data = _component_data;
  21. } // ctor
  22. } // class TaggedComponent