1 11 package org.eclipse.jface.internal.databinding.provisional.description; 12 13 14 20 public class NestedProperty extends Property { 21 22 private Class [] types; 23 private Class prototypeClass; 24 25 30 public NestedProperty(Object object, String [] properties, Class [] types) { 31 super(object, properties); 32 this.types = types; 33 } 34 35 40 public NestedProperty(Object object, String properties, Class prototypeClass) { 41 super(object, properties); 42 this.prototypeClass = prototypeClass; 43 } 44 45 48 public Class [] getTypes() { 49 return types; 50 } 51 52 55 public Class getPrototypeClass() { 56 return prototypeClass; 57 } 58 59 60 } 61 | Popular Tags |