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

de.ikor.sip.foundation.mvnplugin.model.ParsedJavaFile Maven / Gradle / Ivy

There is a newer version: 3.5.0
Show newest version
package de.ikor.sip.foundation.mvnplugin.model;

import java.nio.file.Path;
import java.util.Collection;

/** Represents a source file that has been parsed for import statements. */
public final class ParsedJavaFile {

  private final Path path;
  private final String fqcn;
  private final Collection imports;

  public ParsedJavaFile(Path path, String fqcn, Collection imports) {
    this.path = path;
    this.fqcn = fqcn.trim();
    this.imports = imports;
  }

  public Path getPath() {
    return path;
  }

  public Collection getImports() {
    return imports;
  }

  public String getFqcn() {
    return fqcn;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy