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

org.javers.repository.jql.ShadowScopeDefinition Maven / Gradle / Ivy

package org.javers.repository.jql;

import org.javers.common.string.ToStringBuilder;

class ShadowScopeDefinition {
    private final ShadowScope shadowScope;
    private final int maxGapsToFill;

    ShadowScopeDefinition(ShadowScope shadowScope, int maxGapsToFill) {
        this.shadowScope = shadowScope;
        this.maxGapsToFill = maxGapsToFill;
    }

    ShadowScope getScope() {
        return shadowScope;
    }

    int getMaxGapsToFill() {
        return maxGapsToFill;
    }

    @Override
    public String toString() {
        return ToStringBuilder.toString(this,
                "shadowScope", shadowScope,
                "maxGapsToFill", maxGapsToFill);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy