-
Notifications
You must be signed in to change notification settings - Fork 0
/
linkanddepth.java
59 lines (46 loc) · 1.21 KB
/
linkanddepth.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package hyperlinkkk.validationnnn;
/**
*
* @author NEXT STORE
*/
public class linkanddepth {
private String link;
private int depth;
private int threads;
linkanddepth(String link ,int depth,int threads){
this.link=link;
this.depth=depth;
this.threads=threads;
}
linkanddepth(String link ,int depth){
this.link=link;
this.depth=depth;
}
public int getThreads() {
return threads;
}
public void setThreads(int threads) {
this.threads = threads;
}
public String getLink() {
return link;
}
public void setLink(String link) {
this.link = link;
}
public int getDepth() {
return depth;
}
public void setDepth(int depth) {
this.depth = depth;
}
@Override
public String toString() {
return "linkanddepth{" + "link=" + link + ", depth=" + depth + ", threads=" + threads + '}';
}
}