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

net.kemitix.checkstyle.ruleset.builder.RuleSource Maven / Gradle / Ivy

package net.kemitix.checkstyle.ruleset.builder;

import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

/**
 * The origin of the rule.
 *
 * @author Paul Campbell ([email protected])
 */
@Setter
@Getter
@NoArgsConstructor
public class RuleSource {

    private String name;
    private boolean enabled;
    private String basePackage;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy