1. /*
  2. * @(#)Writeable.java 1.13 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. //Source file: J:/ws/serveractivation/src/share/classes/com.sun.corba.se.internal.ior/Writeable.java
  8. package com.sun.corba.se.internal.ior;
  9. import org.omg.CORBA_2_3.portable.OutputStream ;
  10. /**
  11. * @author
  12. */
  13. interface Writeable
  14. {
  15. /**
  16. * @param arg0
  17. * @return void
  18. * @exception
  19. * @author
  20. * @roseuid 3910985202DB
  21. */
  22. public abstract void write(OutputStream arg0);
  23. }