1 15 package org.apache.hivemind.parse; 16 17 import org.apache.hivemind.impl.BaseLocatable; 18 19 25 public class AttributeMappingDescriptor extends BaseLocatable 26 { 27 private String _attributeName; 28 private String _propertyName; 29 30 public String getAttributeName() 31 { 32 return _attributeName; 33 } 34 35 public String getPropertyName() 36 { 37 return _propertyName; 38 } 39 40 public void setAttributeName(String string) 41 { 42 _attributeName = string; 43 } 44 45 public void setPropertyName(String string) 46 { 47 _propertyName = string; 48 } 49 } 50 | Popular Tags |