com.vladsch.flexmark.util.dependency.DependentItemMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-util-dependency Show documentation
Show all versions of flexmark-util-dependency Show documentation
flexmark-java dependency utility classes
The 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);
}
}