ns2/Parameter.java

Go to the documentation of this file.
00001 package ns2;
00002 
00008 public class Parameter {
00009     public String net;
00010     public String trace;
00011     public String activity;
00012     public String mobility;
00013     public String config;
00014     public double begin;
00015     public double end;
00016     public double penetration;
00017     public long seed;
00018     public boolean hasPenetration;
00019 
00028     public Parameter(String net, String trace, String activity, String mobility, String config, double begin, double end, double penetration, long seed, boolean hasPenetration) {
00029         this.net         = net;
00030         this.trace       = trace;
00031         this.activity    = activity;
00032         this.mobility    = mobility;
00033         this.config      = config;
00034         this.begin       = begin;
00035         this.end         = end;
00036         this.penetration = penetration;
00037         this.seed        = seed;
00038         this.hasPenetration = hasPenetration;
00039     }
00040 }

Generated on Wed May 5 00:06:35 2010 for Sumo - Simulation of Urban MObility by  doxygen 1.5.6