1 2 package org.catacomb.dataview.read; 3 4 5 6 import java.net.URL; 7 8 9 10 public class URLImportContext extends FUImportContext { 11 12 URL baseURL; 13 URL baseURLDir; 14 15 16 public URLImportContext(URL u) { 17 baseURL = u; 18 } 19 20 21 22 }