git-svn-id: svn://10.0.0.236/branches/MVCC-VENDOR-BRANCH@90430 18797224-902f-48f8-a5cc-f745e15eee43
19 lines
379 B
Java
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.
|
|
*/
|