1 21 package org.jacorb.collection; 22 23 24 25 import org.omg.CosCollection.*; 26 27 import org.jacorb.collection.util.*; 28 29 import org.omg.PortableServer.POA ; 30 31 import org.omg.PortableServer.Servant ; 32 33 import org.omg.CORBA.Any ; 34 35 import org.omg.CORBA.AnyHolder ; 36 37 38 39 class SequenceImpl extends SequentialCollectionImpl 40 41 implements CSequenceOperations { 42 43 44 45 SequenceImpl( OperationsOperations ops, POA poa, IteratorFactory iterator_factory, int expected_size ){ 46 47 super( ops, poa, iterator_factory ); 48 49 data = new SortedVector( new SortedRelationComparator(ops), expected_size ); 50 51 }; 52 53 54 55 public int compare( CSequence collector, Comparator comparison ) { 56 57 throw new org.omg.CORBA.NO_IMPLEMENT (); 58 59 }; 60 61 }; 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | Popular Tags |