1 15 package org.apache.tapestry.spec; 16 17 import org.apache.hivemind.Locatable; 18 import org.apache.hivemind.LocationHolder; 19 20 27 public interface IBindingSpecification extends LocationHolder, Locatable 28 { 29 33 34 public BindingType getType(); 35 36 43 44 public String getValue(); 45 46 public void setType(BindingType type); 47 48 public void setValue(String value); 49 } | Popular Tags |