forked from dixingxing0/halo1.1
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
41 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package halo.util; | ||
|
||
public class IpData { | ||
|
||
private long begin; | ||
|
||
private long end; | ||
|
||
private String name; | ||
|
||
public IpData(long begin, long end, String name) { | ||
super(); | ||
this.begin = begin; | ||
this.end = end; | ||
this.name = name; | ||
} | ||
|
||
public long getBegin() { | ||
return begin; | ||
} | ||
|
||
public void setBegin(long begin) { | ||
this.begin = begin; | ||
} | ||
|
||
public long getEnd() { | ||
return end; | ||
} | ||
|
||
public void setEnd(long end) { | ||
this.end = end; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
} |