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