Searched defs:binary (Results 1 - 2 of 2) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/analysis/
H A DCtags.java50 private String binary; field in class:Ctags
56 * @param binary comamnd name to use.
59 public void setBinary(String binary) { argument
60 if (binary == null) {
61 throw new IllegalArgumentException("null binary is not allowed");
63 this.binary = binary;
90 command.add(binary);
165 * Run the ctags binary for the given file and return the symbols found.
/opengrok-jel/src/org/opensolaris/opengrok/search/
H A DHit.java55 * Holds value of property binary.
57 private boolean binary; field in class:Hit
82 * @param binary If this is a binary file or not
85 public Hit(String filename, String line, String lineno, boolean binary, boolean alt) { argument
97 this.binary = binary;
187 * Getter for property binary.
189 * @return Value of property binary.
192 return this.binary;
200 setBinary(boolean binary) argument
[all...]

Completed in 12 milliseconds