1 11 12 package org.eclipse.jface.internal.databinding.provisional.description; 13 14 20 public class ListModelDescription { 21 22 private final Property collectionProperty; 23 24 private final Object propertyID; 25 26 30 public ListModelDescription(Property collectionProperty, Object propertyID) { 31 this.collectionProperty = collectionProperty; 32 this.propertyID = propertyID; 33 } 34 35 38 public Property getCollectionProperty() { 39 return collectionProperty; 40 } 41 42 45 public Object getPropertyID() { 46 return propertyID; 47 } 48 49 } 50 | Popular Tags |