1. /*
  2. * @(#)DynFixed.java 1.4 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. package org.omg.CORBA;
  8. /** The DynFixed interface represents a DynAny object which is associated
  9. * with an IDL fixed type.
  10. */
  11. public interface DynFixed extends org.omg.CORBA.Object, org.omg.CORBA.DynAny
  12. {
  13. /**
  14. * Return the value of the fixed type represented in the
  15. * <code>DynFixed</code.
  16. *
  17. * @return the value as a byte array.
  18. */
  19. public byte[] get_value();
  20. /**
  21. * Set the value of the fixed type instance into this
  22. * <code>DynFixed</code>.
  23. *
  24. * @param val the value as a byte array.
  25. */
  26. public void set_value(byte[] val)
  27. throws org.omg.CORBA.DynAnyPackage.InvalidValue;
  28. }