![JAR search and dependency download from the Maven repository](/logo.png)
er.org.jhotdraw8.icollection.0.3.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.jhotdraw8.icollection Show documentation
Show all versions of org.jhotdraw8.icollection Show documentation
JHotDraw8 Immutable Collections
The newest version!
/*
* @(#)module-info.java
* Copyright © 2022 The authors and contributors of JHotDraw. MIT License.
*/
import org.jspecify.annotations.NullMarked;
/**
* Defines interfaces for read-only collections and immutable collections,
* and provides efficient implementations of these interfaces.
*/
@SuppressWarnings("module")
@NullMarked
module org.jhotdraw8.icollection {
requires transitive static org.jspecify;
requires java.logging;
exports org.jhotdraw8.icollection.exception;
exports org.jhotdraw8.icollection.facade;
exports org.jhotdraw8.icollection.immutable;
exports org.jhotdraw8.icollection.readonly;
exports org.jhotdraw8.icollection.sequenced;
exports org.jhotdraw8.icollection;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy