blob: 52a6fec91a6dca0a4d0214ad20e3e063007f6d9d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Eclipse XWT Project.
* 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:
* Erdal Karaca - initial API and implementation
******************************************************************************/
package org.eclipse.xwt.e4.internal;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.xwt.javabean.metadata.properties.AbstractProperty;
import org.eclipse.xwt.metadata.DefaultLoadingType;
import org.eclipse.xwt.metadata.IProperty;
import org.eclipse.xwt.metadata.IValueLoading;
public class ExportsProperty extends AbstractProperty {
public ExportsProperty() {
super("Exports", Export[].class, new DefaultLoadingType(
IValueLoading.PostChildren, new IProperty[0]));
}
public void setValue(Object target, Object value)
throws IllegalArgumentException, IllegalAccessException,
InvocationTargetException, SecurityException, NoSuchFieldException {
}
public Object getValue(Object target) throws IllegalArgumentException,
IllegalAccessException, InvocationTargetException,
SecurityException, NoSuchFieldException {
return null;
}
}