tool.feedback.FeedbackWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of staticanalyser Show documentation
Show all versions of staticanalyser Show documentation
A static design pattern verification plugin.
The newest version!
package tool.feedback;
/**
* A wrapper to be able to return something more than a feedback from methods.
*
* @param the type that one wants to be able to return.
*/
public class FeedbackWrapper {
private final Feedback feedback;
private final T other;
public FeedbackWrapper(Feedback feedback, T other) {
this.feedback = feedback;
this.other = other;
}
public Feedback getFeedback() {
return feedback;
}
public T getOther() {
return other;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy