Package water.api.FramesHandler

Examples of water.api.FramesHandler.Frames


  @API(help="Frames")
  FrameV2[] frames; // TODO: create interface or superclass (e.g., FrameBase) for FrameV2

  // Non-version-specific filling into the impl
  @Override public Frames createImpl() {
    Frames f = new Frames();
    f.key = this.key;
    f.column = this.column; // NOTE: this is needed for request handling, but isn't really part of state

    if (null != frames) {
      f.frames = new Frame[frames.length];
View Full Code Here


  }


  // Version-specific filling into the impl
  @Override public Frames createImpl() {
    Frames f = new Frames();
    f.key = this.key;
    f.column = this.column; // NOTE: this is needed for request handling, but isn't really part of state

    if (null != frames) {
      f.frames = new Frame[frames.size()];
View Full Code Here

TOP

Related Classes of water.api.FramesHandler.Frames

Copyright © 2018 www.massapicom. 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.