1. package org.omg.DynamicAny;
  2. /**
  3. * org/omg/DynamicAny/NameValuePair.java .
  4. * Generated by the IDL-to-Java compiler (portable), version "3.2"
  5. * from ../../../../src/share/classes/org/omg/DynamicAny/DynamicAny.idl
  6. * Wednesday, September 15, 2004 10:28:49 AM GMT
  7. */
  8. public final class NameValuePair implements org.omg.CORBA.portable.IDLEntity
  9. {
  10. /**
  11. * The name associated with the Any.
  12. */
  13. public String id = null;
  14. /**
  15. * The Any value associated with the name.
  16. */
  17. public org.omg.CORBA.Any value = null;
  18. public NameValuePair ()
  19. {
  20. } // ctor
  21. public NameValuePair (String _id, org.omg.CORBA.Any _value)
  22. {
  23. id = _id;
  24. value = _value;
  25. } // ctor
  26. } // class NameValuePair