1 15 package org.apache.tapestry.resolver; 16 17 import org.apache.tapestry.INamespace; 18 import org.apache.tapestry.IRequestCycle; 19 import org.apache.tapestry.spec.IComponentSpecification; 20 21 31 32 public interface ISpecificationResolverDelegate 33 { 34 46 47 public IComponentSpecification findPageSpecification(IRequestCycle cycle, INamespace namespace, 48 String simplePageName); 49 50 62 63 public IComponentSpecification findComponentSpecification(IRequestCycle cycle, 64 INamespace namespace, String type); 65 } 66 | Popular Tags |