1 42 43 package org.jfree.xml.generator.model; 44 45 48 public class IndexedPropertyInfo extends PropertyInfo { 49 50 51 private KeyDescription key; 52 53 59 public IndexedPropertyInfo(final String name, final Class type) { 60 super(name, type); 61 } 62 63 68 public KeyDescription getKey() { 69 return this.key; 70 } 71 72 77 public void setKey(final KeyDescription key) { 78 this.key = key; 79 } 80 } 81 | Popular Tags |