import java.util.*;
/**
*
* Sample client program that accesses the Bayes Net server
*
*
* @author Kevin Mathias
* @version 1.0
*/
public class BNBClient
{
public static void main(String[] args)
{
ArrayList list = new ArrayList();
try
{
BNBConnection bnbcon = new BNBConnection();
bnbcon.connect();
list = bnbcon.projectlist();
if (list == null)
{
System.out.println("empty list or operation failed");
}
else
{
for(int i=0;i