This repository was archived by the owner on Jul 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from NCIEVS/master
NCI Term Browser 2.9.1 release
- Loading branch information
Showing
70 changed files
with
2,901 additions
and
5,001 deletions.
There are no files selected for viewing
Binary file not shown.
77 changes: 77 additions & 0 deletions
77
software/browser-util/src/gov/nih/nci/evs/browser/bean/DelimitedString.java
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,77 @@ | ||
package gov.nih.nci.evs.browser.bean; | ||
|
||
import java.io.*; | ||
import java.util.*; | ||
import java.net.*; | ||
|
||
public class DelimitedString | ||
{ | ||
|
||
// Variable declaration | ||
private String line; | ||
private char delimiter; | ||
private Vector values; | ||
private int length; | ||
private int sortIndex; | ||
|
||
// Default constructor | ||
public DelimitedString() { | ||
} | ||
|
||
// Constructor | ||
public DelimitedString( | ||
String line, | ||
char delimiter, | ||
Vector values, | ||
int length) { | ||
|
||
this.line = line; | ||
this.delimiter = delimiter; | ||
this.values = values; | ||
this.length = length; | ||
} | ||
|
||
public void setSortIndex(int sortIndex) { | ||
this.sortIndex = sortIndex; | ||
} | ||
|
||
// Set methods | ||
public void setLine(String line) { | ||
this.line = line; | ||
} | ||
|
||
public void setDelimiter(char delimiter) { | ||
this.delimiter = delimiter; | ||
} | ||
|
||
public void setValues(Vector values) { | ||
this.values = values; | ||
} | ||
|
||
public void setLength(int length) { | ||
this.length = length; | ||
} | ||
|
||
|
||
// Get methods | ||
public int getSortIndex() { | ||
return this.sortIndex; | ||
} | ||
|
||
public String getLine() { | ||
return this.line; | ||
} | ||
|
||
public char getDelimiter() { | ||
return this.delimiter; | ||
} | ||
|
||
public Vector getValues() { | ||
return this.values; | ||
} | ||
|
||
public int getLength() { | ||
return this.length; | ||
} | ||
|
||
} |
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
Oops, something went wrong.