org.fife.rsta.ac.java.resources.properties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of languagesupport Show documentation
Show all versions of languagesupport Show documentation
A library adding code completion and other advanced features for Java, JavaScript, Perl, and other languages to RSyntaxTextArea.
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) {
}