All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vladsch.flexmark.util.dependency.DependentItemMap Maven / Gradle / Ivy

There is a newer version: 4.15.102
Show newest version
package com.vladsch.flexmark.util.dependency;

import com.vladsch.flexmark.util.collection.CollectionHost;
import com.vladsch.flexmark.util.collection.OrderedMap;

public class DependentItemMap extends OrderedMap, DependentItem> {
    public DependentItemMap() {
    }

    public DependentItemMap(int capacity) {
        super(capacity);
    }

    public DependentItemMap(CollectionHost> host) {
        super(host);
    }

    public DependentItemMap(int capacity, CollectionHost> host) {
        super(capacity, host);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy