blob: f048f76cc27efc18503ea6da6498c6f9c889c4dc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jface.databinding;
public class NestedProperty extends Property {
private Class[] types;
private Class prototypeClass;
public NestedProperty(Object object, String[] properties, Class[] types) {
super(object, properties);
this.types = types;
}
public NestedProperty(Object object, String properties, Class prototypeClass) {
super(object, properties);
this.prototypeClass = prototypeClass;
}
public Class[] getTypes() {
return types;
}
public Class getPrototypeClass() {
return prototypeClass;
}
}