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

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

There is a newer version: 3.0.0
Show newest version
package com.structurizr.inspection.model;

import com.structurizr.Workspace;
import com.structurizr.inspection.Inspector;
import com.structurizr.inspection.Violation;

public class EmptyModelInspection extends AbstractModelInspection {

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

    @Override
    protected Violation inspect(Workspace workspace) {
        if (workspace.getModel().isEmpty()) {
            return violation("The model is empty.");
        }

        return noViolation();
    }

    @Override
    protected String getType() {
        return "model.empty";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy