blob: 31481f23802e6385d6543ee820fc0e9f8caba8cf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 Oracle. 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:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.utility.internal.model.value;
import org.eclipse.jpt.utility.internal.model.Model;
/**
* Interface used to abstract property accessing and
* change notification and make it more pluggable.
*/
public interface PropertyValueModel<T>
extends Model
{
/**
* Return the property's value.
*/
T value();
String VALUE = "value";
}