1 28 package org.jruby.runtime.load; 29 30 import java.net.URL ; 31 32 36 public class LoadServiceResource { 37 private URL resource; 38 private String name; 39 40 public LoadServiceResource(URL resource, String name) { 41 this.resource = resource; 42 this.name = name; 43 } 44 45 public String getName() { 46 return name; 47 } 48 49 public URL getURL() { 50 return resource; 51 } 52 } 53 | Popular Tags |