Added Reference.has() for future use.

This commit is contained in:
igor%mir2.org 2004-07-28 15:21:02 +00:00
parent 8799f9f62b
commit d3d45e59da

View File

@ -44,6 +44,11 @@ package org.mozilla.javascript;
*/
public abstract class Reference
{
public boolean has()
{
return true;
}
public abstract Object get();
public abstract Object set(Object value);