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