Java Support Classes |
The TSSInteger
class defines the Integer
argument type used by a number of methods.
/* * * Java Test Script Services Integer class * Public wrapper class for passing mutable integers in TSS calls * * @author DuWayne Morris * @version 1.0, 19-Oct-2000 * * Modified: * * Copyright (C) Rational Software Corporation, 2000 * ALL RIGHTS RESERVED * */ package com.rational.test.tss; public class TSSInteger { private int internalValue; public TSSInteger(int iValue){ internalValue = iValue; } public void setValue(int iValue) { internalValue = iValue; } public int getValue() { return internalValue; } }
Rational Test Script Services for Java | Rational Software Corporation |
Copyright (c) 2003, Rational Software Corporation | http://www.rational.com support@rational.com info@rational.com |