Package com.google.collide.dto.DocOpComponent

Examples of com.google.collide.dto.DocOpComponent.RetainLine


  }

  public static void assertRetainLine(int expectedRetainLineCount, DocOp op, int index) {
    DocOpComponent component = op.getComponents().get(index);
    assertEquals(RETAIN_LINE, component.getType());
    RetainLine retainLine = (RetainLine) component;
    assertEquals(expectedRetainLineCount, retainLine.getLineCount());
  }
View Full Code Here

TOP

Related Classes of com.google.collide.dto.DocOpComponent.RetainLine

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.