Package water.api

Source Code of water.api.TutorialsV1

package water.api;

import water.*;
import water.api.TutorialsHandler.Tutorials;
import water.util.DocGen.HTML;

class TutorialsV1 extends Schema<Tutorials,TutorialsV1> {
  // This Schema has no inputs
  // This Schema has no outputs

  //==========================
  // Custom adapters go here

  // Version&Schema-specific filling into the handler
  @Override public Tutorials createImpl() {
    return new Tutorials();                // No fields to fill
  }

  // Version&Schema-specific filling from the impl
  @Override public TutorialsV1 fillFromImpl(Tutorials t) {
    return this;                // No fields to fill
  }

  @Override public HTML writeHTML_impl( HTML ab ) { return ab.p(Tutorials.HTML); }
}
TOP

Related Classes of water.api.TutorialsV1

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.