コード例 #1
0
ファイル: UrnSet.java プロジェクト: mnutt/limewire5-ruby
 /** Constructs a UrnSet with URNs from the given collection. */
 public UrnSet(Collection<? extends URN> c) {
   addAll(c);
 }
コード例 #2
0
ファイル: UrnSet.java プロジェクト: mnutt/limewire5-ruby
 public UnmodifiableUrnSet(Set<? extends URN> set) {
   super.addAll(set);
 }