1 15 package org.apache.tapestry.services; 16 17 import java.util.Locale ; 18 19 import org.apache.tapestry.IComponent; 20 import org.apache.tapestry.INamespace; 21 22 32 public interface ComponentPropertySource 33 { 34 45 46 public String getComponentProperty(IComponent component, String propertyName); 47 48 57 public String getLocalizedComponentProperty(IComponent component, Locale locale, 58 String propertyName); 59 60 70 71 public String getNamespaceProperty(INamespace namespace, String propertyName); 72 73 77 78 public String getLocalizedNamespaceProperty(INamespace namespace, Locale locale, 79 String propertyName); 80 } | Popular Tags |