rhino1.7.7.testsrc.org.mozilla.javascript.tests.DefineClassMapInheritance Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rhino Show documentation
Show all versions of rhino Show documentation
Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically
embedded into Java applications to provide scripting to end users.
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package org.mozilla.javascript.tests;
import static org.junit.Assert.*;
import java.lang.reflect.InvocationTargetException;
import org.junit.Test;
import org.mozilla.javascript.Context;
import org.mozilla.javascript.ScriptableObject;
@SuppressWarnings("serial")
public class DefineClassMapInheritance {
public static class Food extends ScriptableObject {
@Override
public String getClassName() {
return getClass().getSimpleName();
}
}
public static class Fruit extends Food {
}
public static class Vegetable extends Food {
}
@Test
public void test() throws IllegalAccessException, InstantiationException,
InvocationTargetException {
Context cx = Context.enter();
try {
ScriptableObject scope = cx.initStandardObjects();
// define two classes that share a parent prototype
ScriptableObject.defineClass(scope, Fruit.class, false, true);
ScriptableObject.defineClass(scope, Vegetable.class, false, true);
assertEquals(Boolean.TRUE,
evaluate(cx, scope, "(new Fruit instanceof Food)"));
assertEquals(Boolean.TRUE,
evaluate(cx, scope, "(new Vegetable instanceof Food)"));
} finally {
Context.exit();
}
}
private static Object evaluate(Context cx, ScriptableObject scope,
String source) {
return cx.evaluateString(scope, source, "", 1, null);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy