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

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

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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy