Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: dr/davmgr/protocol/cmd/ReloadCommand.java


1   package dr.davmgr.protocol.cmd;
2   
3   import dr.davmgr.protocol.*;
4   import java.net.URL;
5   
6   public class ReloadCommand extends Command
7   {
8     protected int depth = 2;
9     public ReloadCommand(Urls urls, int depth) {
10      this.urls=urls;
11      this.depth=depth; 
12    }
13    public int getDepth() {
14      return depth;
15    }  
16  
17    public String toString() {
18      return "ReloadCommand[urls="+urls+"; depth="+depth+"]";
19    }
20  
21  }