Files
Mozilla/mozilla/js2/jsc/src/java/parser/Init.java
jeff.dyer%compilercompany.com e3aaba3727 Mountain View Compiler - Release 2
git-svn-id: svn://10.0.0.236/branches/MVCC-VENDOR-BRANCH@90430 18797224-902f-48f8-a5cc-f745e15eee43
2001-03-26 17:21:25 +00:00

19 lines
379 B
Java

package com.compilercompany.es3c.v1;
/**
* Interface that object initializers implement.
*
* This interface is implemented by objects that can build
* instances of the Value class. For example, there is an
* object class that implements this interface for the
* system global object.
*/
interface Init {
void init( Value ob ) throws Exception;
}
/*
* The end.
*/