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