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

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

The newest version!
package com.structurizr.dsl;

/**
 * Represents a line of DSL, and its line number from the source file.
 */
class DslLine {

    private final String source;
    private final int lineNumber;

    DslLine(String source, int lineNumber) {
        this.source = source;
        this.lineNumber = lineNumber;
    }

    String getSource() {
        return source;
    }

    int getLineNumber() {
        return lineNumber;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy