001// 002// Name 003// $RCSfile: InOutParameter.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:39 $ 012// 013 014package com.kabira.platform; 015 016import java.util.*; 017 018/** 019 * Generic holder class for input/output parameters. 020 */ 021public final class InOutParameter<T> extends Parameter<T> 022{ 023 /** 024 * Creates an empty InOutParameter. 025 */ 026 public InOutParameter() 027 { 028 super(); 029 } 030 031 /** 032 * Creates an InOutParameter containing a value. 033 * 034 * @param value Parameter value 035 */ 036 public InOutParameter(T value) 037 { 038 super(value); 039 } 040}