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
/** | |
* given super-class from a 3rd-party library | |
*/ | |
abstract class AbstractSuperClass<T extends AbstractParamClass> { | |
// ... | |
abstract static class AbstractParamClass { | |
// ... | |
} | |
} |
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 class demonstrates that Eclipse 4.4.2 for some reason does not recognize | |
* that the Scala singleton object for the class Implementor does in fact | |
* implement the interface Interface<String>. | |
* | |
* Instead, it shows the error markers mentioned in the comments. | |
* | |
* However, the code compiles fine (by the Eclipse compiler!), and in fact | |
* running this class' main method prints: | |
* |
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
$ ./procsubtest.sh | |
Bash version: 4.3.33(1)-release | |
grep: /dev/fd/63: No such file or directory | |
grep: /dev/fd/63: No such file or directory | |
grep: /dev/fd/63: No such file or directory | |
grep: /dev/fd/63: No such file or directory | |
grep: /dev/fd/63: No such file or directory |
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
function! s:ParseSerial() | |
"Search for a line that start with a year and contains the word Serial | |
let numberOfLine = search('\(19\|20\)\d\d\(0[1-9]\|1[012]\)\(0[1-9]\|[12][0-9]\|3[01]\)\d\d.*[Ss]erial.*') | |
if numberOfLine == 0 | |
echo "No bind serial found ! so not updating the file" | |
return { 'lineNo': 0 } | |
else | |
"Get the line contents | |
let line = getline(numberOfLine) | |
"Extract the serial number |
NewerOlder