Changeset 299
- Timestamp:
- 02/07/10 05:04:38 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/corelib/src/org/bridgedb/webservice/biomart/util/Dataset.java
r288 r299 90 90 + name; 91 91 92 //System.out.println("Dataset name = " + datasetName + ", Target URL = "93 // + urlStr + "\n");94 92 URL url = new URL(urlStr); 95 93 InputStream is = InternalUtils.getInputStream(url); … … 129 127 + detail.get("serverVirtualSchema") + "&type=attributes&dataset=" 130 128 + name; 131 132 System.out.println (urlStr);133 129 134 130 URL url = new URL(urlStr); … … 196 192 public Dataset(String name, String displayName, Database database) 197 193 { 198 if (name == null) throw new NullPointerException("name may not be null"); 194 if (name == null) 195 throw new NullPointerException("name may not be null."); 196 if (database==null) 197 throw new NullPointerException("database may not be null."); 199 198 this.name = name; 200 199 this.displayName = displayName;
