Lines Matching defs:exports

71  * #requires() dependences}, {@link #exports() exported-packages}, the services
112 * An automatic module. An automatic module is treated as if it exports
371 * @see ModuleDescriptor#exports()
536 * returns {@code false}. Two module exports objects are equal if their
1245 private final Set<Exports> exports;
1257 Set<Exports> exports,
1274 this.exports = emptyOrUnmodifiableSet(exports);
1291 Set<Exports> exports,
1306 this.exports = exports;
1376 * <p> If this module is an automatic module then the set of exports
1381 public Set<Exports> exports() {
1382 return exports;
1497 * Builder} as the {@link ModuleDescriptor.Builder#exports(String) exports},
1512 * .exports("org.acme.stats.core.clustering")
1513 * .exports("org.acme.stats.core.regression")
1534 final Map<String, Exports> exports = new HashMap<>();
1697 public Builder exports(Exports e) {
1703 if (exports.containsKey(source)) {
1707 exports.put(source, e);
1734 public Builder exports(Set<Exports.Modifier> ms,
1748 return exports(e);
1769 public Builder exports(Set<Exports.Modifier> ms, String pn) {
1774 return exports(e);
1797 public Builder exports(String pn, Set<String> targets) {
1798 return exports(Collections.emptySet(), pn, targets);
1816 public Builder exports(String pn) {
1817 return exports(Collections.emptySet(), pn);
2161 Set<Exports> exports = new HashSet<>(this.exports.values());
2181 exports,
2240 c = compare(this.exports, that.exports);
2285 && exports.equals(that.exports)
2311 hc = hc * 43 + exports.hashCode();
2342 if (!exports.isEmpty())
2343 sb.append(", exports: ").append(exports);
2450 * must include all the packages that the module exports, opens, as well
2519 * must include all the packages that the module exports, opens, as well
2709 Set<Exports> exports,
2720 exports,