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

com.greenpepper.shaded.com.vladsch.flexmark.util.collection.CollectionHost Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
package com.greenpepper.shaded.com.vladsch.flexmark.util.collection;

public interface CollectionHost {
    void adding(int index, K k, Object v);
    Object removing(int index, K k);
    void clearing();
    void addingNulls(int index); // adding an empty place holder at index

    boolean skipHostUpdate(); // if should not call back host 
    int getIteratorModificationCount();  // return version stamp used to detect concurrent modifications
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy