blob: f8af85343c03fca66525eae674474ddb77416228 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 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.tests.databinding.scenarios;
/**
* @since 3.2
*
*/
public class CustomBeanModelType {
private String propertyName;
private Object object;
private Class type;
/**
* @param object
* @param propertyName
* @param type
*/
public CustomBeanModelType(Object object, String propertyName, Class type) {
this.object = object;
this.propertyName = propertyName;
this.type = type;
}
/**
* @return
*/
public String getPropertyName() {
return propertyName;
}
/**
* @return
*/
public Object getObject() {
return object;
}
/**
* @return
*/
public Class getType() {
return type;
}
}