/*
* Copyright (c) 2003, Israfil Consulting Services Corporation
*
* $Id$
* $Revision$
*
*/
package net.israfil.foundation.valuemodel;
/**
* A smalltalk-style generic value accessor/mutator system, where individual
* items are accessed through a single value
*
* @author Original: Christian Edward Gruber
* @author Recent: $Author$
*
*/
public interface MutableValue extends Value, Vetoable {
public void set(E value);
}