blob: 3e64478a1e804ded6c78950010c16cd59335e5de [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 ValueModel
extends Model
{
/**
* Return the property's value.
*/
Object value();
String VALUE = "value";
}