vote up 0 vote down star
1

I've a Javascript source that uses a Java class that defines a "delete" method (using jdk6 scripting). Since delete is a keyword, I cannot invoke that method.

In JavaFX script any sequence of characters enclosed in <> is treated as a lexical identifier. So you can use "insert", that is a keyword, as an identifier:

var textField = new javax.swing.JTextField();
textField.<<insert>>("Hello World");

Javascript provides a way to protect keywords?

flag

1 Answer

vote up 4 vote down check

In javascript you would do:

textField["insert"]("Hello World");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.