1 15 package org.apache.tapestry.resolver; 16 17 import org.apache.hivemind.Location; 18 import org.apache.tapestry.INamespace; 19 import org.apache.tapestry.IRequestCycle; 20 import org.apache.tapestry.spec.IComponentSpecification; 21 22 28 public interface ComponentSpecificationResolver 29 { 30 45 public void resolve(IRequestCycle cycle, INamespace containerNamespace, String type, 46 Location location); 47 48 66 public void resolve(IRequestCycle cycle, INamespace containerNamespace, String libraryId, 67 String type, Location location); 68 69 72 public IComponentSpecification getSpecification(); 73 74 77 public INamespace getNamespace(); 78 79 82 public String getType(); 83 } | Popular Tags |