froehlich 01/11/09 01:07:02 Added: apps/db/src/java/org/apache/avalon/db/transport SelectReply.java Log: Revision Changes Path 1.1 jakarta-avalon-cornerstone/apps/db/src/java/org/apache/avalon/db/transport/SelectReply.java Index: SelectReply.java =================================================================== /* * Copyright (C) The Apache Software Foundation. All rights reserved. * * This software is published under the terms of the Apache Software License * version 1.1, a copy of which has been included with this distribution in * the LICENSE file. */ package org.apache.avalon.db.transport; import org.apache.avalon.db.actions.ActionException; /** * Class SelectReply * * * @author Gerhard Froehlich <a href="mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]</a> * @version $Revision: 1.1 $ */ public class SelectReply extends Reply { private int mParamterCount; /** * Constructor SelectReply * * * @param state * */ public SelectReply() { super(SELECTREPLY); } public int getParameterCount() { return mParamterCount; } public void setParameterCount(int i) { mParamterCount = i; } }
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>