1 18 package org.apache.tools.ant.types; 19 20 import java.net.URL ; 21 22 40 public class ResourceLocation { 41 42 44 private String publicId = null; 45 46 47 private String location = null; 48 49 56 private URL base = null; 57 58 60 63 public void setPublicId(String publicId) { 64 this.publicId = publicId; 65 } 66 67 71 public void setLocation(String location) { 72 this.location = location; 73 } 74 75 81 public void setBase(URL base) { 82 this.base = base; 83 } 84 85 88 public String getPublicId() { 89 return publicId; 90 } 91 92 95 public String getLocation() { 96 return location; 97 } 98 99 102 public URL getBase() { 103 return base; 104 } 105 106 } | Popular Tags |