1 33 34 package com.internetcds.jdbc.tds; 35 36 37 public class PacketResult 38 { 39 public static final String cvsVersion = "$Id: PacketResult.java,v 1.1 2006/06/23 10:39:04 sinisa Exp $"; 40 41 42 private byte packetType = 0; 43 44 public PacketResult(byte type) 45 { 46 setPacketType(type); 47 } 48 49 public byte getPacketType() 50 { 51 return packetType; 52 } 53 54 public void setPacketType(byte value) 55 { 56 packetType = value; 57 } 58 } 59 60 | Popular Tags |