當前位置: 首頁>>代碼示例>>Java>>正文


Java ScriptableObject.defineProperty方法代碼示例

本文整理匯總了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);
}
 
開發者ID:GloriousEggroll,項目名稱:quorrabot,代碼行數:15,代碼來源:Script.java

示例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);
}
 
開發者ID:F43nd1r,項目名稱:rhino-android,代碼行數:28,代碼來源:ExternalArrayTest.java


注:本文中的org.mozilla.javascript.ScriptableObject.defineProperty方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。