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

com.structurizr.inspection.model.AbstractComponentInspection Maven / Gradle / Ivy

The newest version!
package com.structurizr.inspection.model;

import com.structurizr.inspection.Inspector;
import com.structurizr.inspection.Violation;
import com.structurizr.model.Component;
import com.structurizr.model.Element;

abstract class AbstractComponentInspection extends AbstractElementInspection {

    public AbstractComponentInspection(Inspector inspector) {
        super(inspector);
    }

    @Override
    protected final Violation inspect(Element element) {
        return inspect((Component)element);
    }

    protected abstract Violation inspect(Component component);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy