本文整理匯總了Java中org.mozilla.javascript.ScriptableObject.defineProperty方法的典型用法代碼示例。如果您正苦於以下問題:Java ScriptableObject.defineProperty方法的具體用法?Java ScriptableObject.defineProperty怎麽用?Java ScriptableObject.defineProperty使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.mozilla.javascript.ScriptableObject
的用法示例。
在下文中一共展示了ScriptableObject.defineProperty方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: load
import org.mozilla.javascript.ScriptableObject; //導入方法依賴的package包/類
public void load() throws IOException {
if (killed) {
return;
}
context = Context.enter();
ScriptableObject scope = context.initStandardObjects(global, false);
scope.defineProperty("$", global, 0);
scope.defineProperty("$api", ScriptApi.instance(), 0);
scope.defineProperty("$script", this, 0);
scope.defineProperty("$var", vars, 0);
context.evaluateString(scope, FileUtils.readFileToString(file), file.getName(), 1, null);
}
示例2: testIntArrayThenRemove
import org.mozilla.javascript.ScriptableObject; //導入方法依賴的package包/類
@Test
public void testIntArrayThenRemove()
{
ScriptableObject a = (ScriptableObject)cx.newObject(root);
// Set the external array data
TestIntArray l = new TestIntArray(10);
a.setExternalArrayData(l);
for (int i = 0; i < 10; i++) {
l.setArrayElement(i, i);
}
root.put("testArray", root, a);
root.put("testArrayLength", root, 10);
root.put("regularArray", root, false);
runScript("jstests/extensions/external-array-test.js", 1);
// Clear it and test again. When cleared, object should go back to behaving like a
// regular JavaScript object.
a.delete("stringField");
a.delete("intField");
a.setExternalArrayData(null);
for (int i = 0; i < 10; i++) {
a.put(i, a, i);
}
a.defineProperty("length", 10, ScriptableObject.DONTENUM);
root.put("regularArray", root, true);
runScript("jstests/extensions/external-array-test.js", 1);
}