1 42 43 package org.jfree.xml.util; 44 45 48 public class PropertyDefinition { 49 50 51 private String propertyName; 52 53 54 private String elementName; 55 56 62 public PropertyDefinition(final String propertyName, final String elementName) { 63 this.elementName = elementName; 64 this.propertyName = propertyName; 65 } 66 67 72 public String getPropertyName() { 73 return this.propertyName; 74 } 75 76 81 public String getElementName() { 82 return this.elementName; 83 } 84 85 } 86 | Popular Tags |