Package rabbit.data.internal.xml.schema.events

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


  }

  @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

Related Classes of rabbit.data.internal.xml.schema.events.PerspectiveEventType

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.