/* * JBossWS WS-Tools Generated Source * * Generation Date: Wed Jun 20 23:39:21 CEST 2007 * * This generated source code represents a derivative work of the input to * the generator that produced it. Consult the input for the copyright and * terms of use that apply to this source code. */ package net.programmera.ws.calculator; public class DivisionRequestType { protected int dividend; protected int divisor; public DivisionRequestType(){} public DivisionRequestType(int dividend, int divisor){ this.dividend=dividend; this.divisor=divisor; } public int getDividend() { return dividend ;} public void setDividend(int dividend){ this.dividend=dividend; } public int getDivisor() { return divisor ;} public void setDivisor(int divisor){ this.divisor=divisor; } }