/*
* $Header: /cvsroot/jvalidate/jvalidate-framework/jvalidate/src/test/java/nl/knowlogy/validation/test/TestTypes.java,v 1.2 2006/05/23 20:47:12 roberthofstra Exp $
* $Revision: 1.2 $
* $Date: 2006/05/23 20:47:12 $
*
*
* Created on Oct 6, 2004
*
* All right reserved(c) 2004, Knowlogy
*
* Copyright 2004 - 2005 Knowlogy, the Netherlands. All rights reserved.
* All Knowlogy brand and product names are trademarks or registered trademarks
* of Knowlogy in the Netherlands and other countries.
*
* No part of this publication may be reproduced, transmitted, stored in a retrieval system,
* or translated into any human or computer language, in any form, or by any means, electronic,
* mechanical, magnetic, optical, chemical, manual, or otherwise,
* without the prior written permission of the copyright owner, Knowlogy.
*
*/
package nl.knowlogy.validation.test;
/**
*
* @author Robert
*/
public class TestTypes {
private int number;
/**
* @return Returns the number.
*/
public int getNumber() {
return number;
}
/**
* @param number The number to set.
*/
public void setNumber(int number) {
this.number = number;
}
}
|