001// 002// Name 003// $RCSfile: OutParameter.java,v $ 004// 005// Copyright 006// Copyright 2007-2013 Cloud Software Group, Inc. ALL RIGHTS RESERVED. 007// Cloud Software Group, Inc. Confidential Information 008// 009// History 010// $Revision: 1.1.2.4 $ $Date: 2013/03/06 18:51:32 $ 011// 012 013package com.kabira.platform; 014 015/** 016 * @deprecated Generic holder class for output parameters. 017 */ 018@Deprecated 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}