All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fife.rsta.ac.java.resources.properties Maven / Gradle / Ivy

Go to download

A library adding code completion and other advanced features for Java, JavaScript, Perl, and other languages to RSyntaxTextArea.

There is a newer version: 3.3.0
Show newest version
sysout.shortDesc=print to standard out
sysout.summary=System.out.println();
syserr.shortDesc=print to standard error
syserr.summary=System.err.println();
for.array.shortDesc=iterate over array
for.array.summary=for (int i = 0; i < array.length; i++) {

}
for.loop.shortDesc=iterate for.loop.summary=for (int i = 0; i < 10; i++) {

}
do.shortDesc=do-while statement do.summary=do {

} while(condition);
runnable.shortDesc=runnable runnable.summary=new Runnable() {
public void run() {
}
}
if.cond.shortDesc=if statement if.cond.summary=if (condition) {

}
if.else.shortDesc=if-else statement if.else.summary=if (condition) {

}
else {

}
while.shortDesc=while condition while.summary=while (condition) {

}
todo=A to-do reminder fixme=A bug that needs to be fixed switch.case.shortDesc=switch case statement switch.case.summary=switch (key) {
 case value:

      break;

  default:
      break;
} try.catch.shortDesc=try catch statement try.catch.summary=try {

}
catch (err) {

} catch.block.shortDesc=catch block catch.block.summary=catch (err) {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy