org.nasdanika.models.rules.InspectionResult Maven / Gradle / Ivy
/**
*/
package org.nasdanika.models.rules;
import org.nasdanika.models.architecture.ArchitectureDescriptionElement;
/**
*
* A representation of the model object 'Inspection Result'.
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.models.rules.InspectionResult#getRule Rule}
*
*
* @see org.nasdanika.models.rules.RulesPackage#getInspectionResult()
* @model
* @generated
*/
public interface InspectionResult extends ArchitectureDescriptionElement {
/**
* Returns the value of the 'Rule' reference.
*
*
* @return the value of the 'Rule' reference.
* @see #setRule(Rule)
* @see org.nasdanika.models.rules.RulesPackage#getInspectionResult_Rule()
* @model required="true"
* @generated
*/
Rule getRule();
/**
* Sets the value of the '{@link org.nasdanika.models.rules.InspectionResult#getRule Rule}' reference.
*
*
* @param value the new value of the 'Rule' reference.
* @see #getRule()
* @generated
*/
void setRule(Rule value);
} // InspectionResult