Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
public abstract class net.okapia.osid.jamocha.spi.AbstractOsidManager
    implements org.osid.OsidManager,
               org.osid.OsidProxyManager {
 
    /**
     * 	Initializes this manager. A manager is initialized once at the time of
     *  creation.
     *
     *  @param  runtime the runtime environment
     *  @throws org.osid.ConfigurationErrorException an error with
     *          implementation configuration
     *  @throws org.osid.IllegalStateException this manager has already been
     *          initialized by the <code> OsidLoader </code>
     *  @throws org.osid.NullArgumentException <code> runtime </code> is
     *          <code> null </code>
     *  @throws org.osid.OperationFailedException unable to complete request
     */

    @OSID @Override
    public void initialize(org.osid.OsidRuntimeManager runtime)
        throws org.osid.ConfigurationErrorException,
               org.osid.OperationFailedException {

        this.runtime = runtime;
        return;
    }


    /**
     *  Gets the runtime environment.
     *
     *  @return the runtime
     *  @throws org.osid.IllegalStateException This manager has been closed.
     */

    protected org.osid.OsidRuntimeManager getRuntime() {
	    return (this.runtime);
    }
 
    ....
}