VisClient/org/hfbk/vis/source/SourceServer.java

Go to the documentation of this file.
00001 package org.hfbk.vis.source;
00002 
00003 import java.io.BufferedReader;
00004 import java.io.IOException;
00005 import java.net.URL;
00006 
00007 import org.dronus.graph.Graph;
00008 import org.hfbk.util.HTTPUtils;
00009 
00017 public class SourceServer extends Source {
00018 
00019         public SourceServer(URL url) {
00020                 super(url);
00021         }
00022 
00023         void buildGraph() throws IOException {
00024                 BufferedReader r=HTTPUtils.connect(url,silent);
00025                 graph=new Graph(r,silent);                      
00026         }
00027 }

Generated on Tue Apr 7 17:57:20 2009 for visclient by  doxygen 1.5.1