1 15 package org.apache.tapestry.spec; 16 17 22 23 public class AssetSpecification extends LocatablePropertyHolder implements IAssetSpecification 24 { 25 protected String path; 26 27 28 private String _propertyName; 29 30 35 36 public String getPath() 37 { 38 return path; 39 } 40 41 42 43 public void setPath(String path) 44 { 45 this.path = path; 46 } 47 48 49 public String getPropertyName() 50 { 51 return _propertyName; 52 } 53 54 55 public void setPropertyName(String propertyName) 56 { 57 _propertyName = propertyName; 58 } 59 } | Popular Tags |