1 42 43 package org.jfree.xml.util; 44 45 48 public class ConstructorDefinition { 49 50 51 private boolean isNull; 52 53 54 private String propertyName; 55 56 57 private Class type; 58 59 65 public ConstructorDefinition(final String propertyName, final Class type) { 66 this.isNull = (propertyName == null); 67 this.propertyName = propertyName; 68 this.type = type; 69 } 70 71 76 public Class getType() { 77 return this.type; 78 } 79 80 85 public boolean isNull() { 86 return this.isNull; 87 } 88 89 94 public String getPropertyName() { 95 return this.propertyName; 96 } 97 98 } 99 | Popular Tags |