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