Esempio n. 1
0
 /** Constructs a UrnSet with URNs from the given collection. */
 public UrnSet(Collection<? extends URN> c) {
   addAll(c);
 }
Esempio n. 2
0
 public UnmodifiableUrnSet(Set<? extends URN> set) {
   super.addAll(set);
 }