blob: 92fa2fee36a15080b8e399836e3c15e243b34620 [file] [log] [blame]
package org.eclipse.jem.internal.java.adapters;
/*******************************************************************************
* Copyright (c) 2001, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/*
* $RCSfile: ReadAdaptor.java,v $
* $Revision: 1.1 $ $Date: 2003/10/27 17:12:30 $
*/
import org.eclipse.emf.ecore.EObject;
/**
* Extended Adaptor interface which adds support for an adapter
* providing default values for attributes.
* Creation date: (6/6/2000 4:41:19 PM)
* @author: Scott Rich
*/
public interface ReadAdaptor extends org.eclipse.emf.common.notify.Adapter {
public static final String TYPE_KEY = "JavaReflection";
public Object getValueIn(EObject object, EObject attribute);
public boolean reflectValuesIfNecessary(); //FB
}