1 15 package org.apache.tapestry.spec; 16 17 import org.apache.hivemind.impl.BaseLocatable; 18 19 23 public class InjectSpecificationImpl extends BaseLocatable implements InjectSpecification 24 { 25 private String _property; 26 27 private String _object; 28 29 private String _type; 30 31 public String getObject() 32 { 33 return _object; 34 } 35 36 public void setObject(String object) 37 { 38 _object = object; 39 } 40 41 public String getProperty() 42 { 43 return _property; 44 } 45 46 public void setProperty(String name) 47 { 48 _property = name; 49 } 50 51 public String getType() 52 { 53 return _type; 54 } 55 56 public void setType(String type) 57 { 58 _type = type; 59 } 60 } | Popular Tags |