All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mindee.parsing.custom.lineitems.PreparedLines Maven / Gradle / Ivy

There is a newer version: 4.21.0
Show newest version
package com.mindee.parsing.custom.lineitems;

import java.util.List;
import lombok.Getter;

/**
 * An anchor and its initial lines.
 */
@Getter
public final class PreparedLines {
  private final Anchor anchor;
  private final List lines;

  /**
   * An anchor and its initial lines.
   */
  public PreparedLines(Anchor anchor, List lines) {
    this.anchor = anchor;
    this.lines = lines;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy