1 26 27 package org.objectweb.util.browser.core.naming; 28 29 30 import org.objectweb.util.browser.core.api.Name; 31 import org.objectweb.util.browser.core.api.NameFactory; 32 33 34 35 43 public class DefaultNameFactory implements NameFactory { 44 45 51 57 63 69 83 public Name newOWName(String id) { 84 return new DefaultName(id); 85 } 86 87 102 public Name newOWName(String id, Name subname) { 103 return new DefaultName(id, subname); 104 } 105 106 } 107 | Popular Tags |