/*
* -------------------------------------------------------------------------
* $Id: Function.java,v 1.1 2003/04/04 16:26:27 trudisch Exp $
* -------------------------------------------------------------------------
* Copyright (c) 1999 Visual Numerics Inc. All Rights Reserved.
*
* This software is confidential information which is proprietary to
* and a trade secret of Visual Numerics, Inc. Use, duplication or
* disclosure is subject to the terms of an appropriate license
* agreement.
*
* VISUAL NUMERICS MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE
* SUITABILITY OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING
* BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. VISUAL
* NUMERICS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE
* AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR
* ITS DERIVATIVES.
*--------------------------------------------------------------------------
*/
package com.imsl.demo.SeriesAnalysis;
/**
*
* @author brophy
* @created February 8, 2002
*/
class Function {
String text;
char mnemonic;
String fullname;
Function(String text, char mnemonic, String fullname) {
this.text = text;
this.mnemonic = mnemonic;
this.fullname = fullname;
}
public String toString() {
return "Function(text="+text+",mnemonic="+mnemonic+",fullname="+fullname+")";
}
}