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

tool.feedback.FeedbackWrapper Maven / Gradle / Ivy

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