1 7 8 package com.sun.corba.se.spi.orb ; 9 10 import org.omg.CORBA.portable.OutputStream ; 11 12 public interface ORBVersion extends Comparable 13 { 14 byte FOREIGN = 0 ; byte OLD = 1 ; byte NEW = 2 ; byte JDK1_3_1_01 = 3; byte NEWER = 10 ; byte PEORB = 20 ; 21 byte getORBType() ; 22 23 void write( OutputStream os ) ; 24 25 public boolean lessThan( ORBVersion version ) ; 26 } 27 | Popular Tags |