1 8 package org.apache.avalon.excalibur.container; 9 10 import java.net.URL ; 11 12 17 public class Locator 18 { 19 private final String m_name; 20 private final URL m_location; 21 22 public Locator( final String name, final URL location ) 23 { 24 m_name = name; 25 m_location = location; 26 } 27 28 34 public String getName() 35 { 36 return m_name; 37 } 38 39 47 public URL getLocation() 48 { 49 return m_location; 50 } 51 } 52 | Popular Tags |