TS 69 JavaFX CodeTemplates
(Difference between revisions)
(→Operators) |
(→Language Constructions) |
||
Line 86: | Line 86: | ||
|- valign="top" | |- valign="top" | ||
| cl | | cl | ||
- | | | + | | class Class1 { } |
|- valign="top" | |- valign="top" | ||
| def | | def | ||
- | | | + | | def var1 = ; |
|- valign="top" | |- valign="top" | ||
| var | | var | ||
- | | | + | | var var1 = ; |
+ | |- valign="top" | ||
+ | | fu | ||
+ | | function FunctionName() {} | ||
|} | |} |
Revision as of 15:12, 5 August 2010
Author: Alexandr Scherbatiy
Version: 1.0
Last update: 05 August 2010
Introduction:
Comments:
Contents |
Below are the tables of the JavaFX code templates. Write the code from the first column and press <Tab>. The expected result is shown in the second column.
Keywords
Template | Result |
---|---|
pa | package |
im | import |
pu | public |
pr | public-read |
bi | bind |
cl | class Class1 {} |
Types
Template | Result |
---|---|
In | Integer |
Bo | Boolean |
Nu | Number |
St | String |
Operators
Template | Result |
---|---|
cn | continue; |
br | break; |
for | for (idx in arr) { } |
wh | while (exp) { } |
de | delete VariableOrAttribute |
tr | try { } catch (e) { } |
Language Constructions
Template | Result |
---|---|
cl | class Class1 { } |
def | def var1 = ; |
var | var var1 = ; |
fu | function FunctionName() {} |