00001 package cz.vutbr.fit.dudka.SGVis.Data;
00002
00006 public class Statistics {
00007
00008 private int hosts;
00009 private int urls;
00010 private int rels;
00011
00018 public Statistics(int hosts, int urls, int rels) {
00019 this.hosts = hosts;
00020 this.urls = urls;
00021 this.rels = rels;
00022 }
00023
00027 public int getHosts() {
00028 return hosts;
00029 }
00030
00034 public int getRels() {
00035 return rels;
00036 }
00037
00041 public int getUrls() {
00042 return urls;
00043 }
00044 }