blob: 9671de270663dedf73abc6ee0d2a42765de0da79 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2011, 2014 Werner Keil, Creative Arts & Technologies.
* 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:
* Werner Keil, Creative Arts & Technologies - initial API and implementation
*****************************************************************************/
package org.eclipse.uomo.core;
/**
* Denote entity that has a {@code V} value.
*
* @version 0.3
* @author <a href="mailto:uomo@catmedia.us">Werner Keil</a>
*/
public interface IValue<V> {
V getValue();
}