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

com.structurizr.dsl.IncludedFile Maven / Gradle / Ivy

The newest version!
package com.structurizr.dsl;

import java.io.File;
import java.util.List;

final class IncludedFile {

    private final File file;
    private final List lines;

    IncludedFile(File file, List lines) {
        this.file = file;
        this.lines = lines;
    }

    List getLines() {
        return lines;
    }

    File getFile() {
        return file;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy