001// 002// Name 003// $RCSfile: OutParameter.java,v $ 004// 005// Copyright 006// Confidential Property of Kabira Technologies, Inc. 007// Copyright 2007, 2010 by Kabira Technologies, Inc. 008// All rights reserved. 009// 010// History 011// $Revision: 1.1.2.2 $ $Date: 2010/05/11 23:50:57 $ 012// 013 014package com.kabira.platform; 015 016/** 017 * Generic holder class for output parameters. 018 */ 019public final class OutParameter<T> extends Parameter<T> 020{ 021 /** 022 * Creates an empty OutParameter. 023 */ 024 public OutParameter() 025 { 026 super(); 027 } 028 029 /** 030 * Creates an OutParameter containing a value. 031 * 032 * @param value OutParameter value 033 */ 034 public OutParameter(T value) 035 { 036 super(value); 037 } 038}