blob: af27efe3c95d5a496abd47a6bfa3b216be58609f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 Oracle Corporation and others.
* 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 Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.bpel.validator.model;
/**
* A value holder interface.
*
* @author Michal Chmielewski (michal.chmielewski@oracle.com)
* @param <T> The type that we are holding onto.
*
* @date Mar 27, 2007
*/
public interface IValue<T> {
/**
* Get the value held by this holder
* @return the item held.
*/
T get ();
}