Examples of PerspectiveEventType


Examples of rabbit.data.internal.xml.schema.events.PerspectiveEventType

  public PerspectiveEventConverter() {
  }
 
  @Override
  protected PerspectiveEventType doConvert(PerspectiveEvent element) {
    PerspectiveEventType type = new PerspectiveEventType();
    type.setDuration(element.getInterval().toDurationMillis());
    type.setPerspectiveId(element.getPerspective().getId());
    return type;
  }
View Full Code Here

Examples of rabbit.data.internal.xml.schema.events.PerspectiveEventType

  }

  @Override
  protected PerspectiveEventType doMerge(PerspectiveEventType t1, PerspectiveEventType t2) {

    PerspectiveEventType result = new PerspectiveEventType();
    result.setPerspectiveId(t1.getPerspectiveId());
    result.setDuration(t1.getDuration() + t2.getDuration());
    return result;
  }
View Full Code Here
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.