Package org.jacorb.collection.util

Examples of org.jacorb.collection.util.SortedVector


/* ========================================================================= */
    public SortedRelationImpl( OperationsOperations ops, POA poa,
             IteratorFactory iterator_factory, int expected_size )
    {
        super( ops, poa, iterator_factory );
        data = new SortedVector( new SortedRelationComparator(ops), expected_size );
        keys = new SortedVector( new KeyComparator(ops) );
    };
View Full Code Here


class SequenceImpl extends SequentialCollectionImpl
                   implements CSequenceOperations {
/* ========================================================================= */
    SequenceImpl( OperationsOperations ops, POA poa, IteratorFactory iterator_factory, int expected_size ){
        super( ops, poa, iterator_factory );
        data = new SortedVector( new SortedRelationComparator(ops), expected_size );
    };
View Full Code Here

    protected SortedVector keys;
    protected KeyNode test_key = new KeyNode();
/* ========================================================================= */
    KeySortedCollectionImpl( OperationsOperations ops, POA poa, IteratorFactory iterator_factory ){
        super( ops, poa, iterator_factory );
        keys = new SortedVector( new KeyComparator( ops ) );
    };
View Full Code Here

    protected SortedVector keys;
    protected KeyNode test_key = new KeyNode();
/* ========================================================================= */
    KeySortedCollectionImpl( OperationsOperations ops, POA poa, IteratorFactory iterator_factory ){
        super( ops, poa, iterator_factory );
        keys = new SortedVector( new KeyComparator( ops ) );
    };
View Full Code Here

/* ========================================================================= */
    public SortedRelationImpl( OperationsOperations ops, POA poa,
             IteratorFactory iterator_factory, int expected_size )
    {
        super( ops, poa, iterator_factory );
        data = new SortedVector( new SortedRelationComparator(ops), expected_size );
        keys = new SortedVector( new KeyComparator(ops) );
    };
View Full Code Here

class SequenceImpl extends SequentialCollectionImpl
                   implements CSequenceOperations {
/* ========================================================================= */
    SequenceImpl( OperationsOperations ops, POA poa, IteratorFactory iterator_factory, int expected_size ){
        super( ops, poa, iterator_factory );
        data = new SortedVector( new SortedRelationComparator(ops), expected_size );
    };
View Full Code Here

TOP

Related Classes of org.jacorb.collection.util.SortedVector

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.