Y:/Code Backup/UDPserv/ItemStruct.java

Go to the documentation of this file.
00001 /******************************************************************************                      
00002  *
00003  *       Copyright (C) 2006 J Team, Inc.
00004  *       All Rights Reserved
00005  *
00006  * File Name      : ItemStruct.java
00007  * Project Name   : UDPserv
00008  * Description    : This file contains the structure defining an item name 
00009  *                  and price.
00010  *                  
00011  * Authors: Jared Suttles
00012  *          Jennifer Tietz
00013  *          Jonathan Chen
00014  *          Joshua Chapman
00015  *
00016  * Version : 1.2
00017  * Date    : 05/01/06
00018  * 
00019  *****************************************************************************/
00020 
00021 public class ItemStruct {
00022           public String Name;
00023           public float Price;
00024           
00025           public ItemStruct(String Name, float Price) {
00026                   this.Name = Name;
00027                   this.Price = Price;
00028           }
00029 }

Generated on Sun Apr 30 18:42:49 2006 for UDPserver by  doxygen 1.4.6-NO