10 lines
228 B
Java
10 lines
228 B
Java
package org.mozilla.javascript;
|
|
|
|
public interface ConstProperties {
|
|
void defineConst(String str, Scriptable scriptable);
|
|
|
|
boolean isConst(String str);
|
|
|
|
void putConst(String str, Scriptable scriptable, Object obj);
|
|
}
|