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

ru.mk.pump.web.interpretator.items.TestParameter Maven / Gradle / Ivy

package ru.mk.pump.web.interpretator.items;

import com.google.common.base.MoreObjects;
import lombok.EqualsAndHashCode;

@SuppressWarnings("unused")
@EqualsAndHashCode(callSuper = true)
public final class TestParameter extends AbstractItem {

    public TestParameter(T source) {
        super(source);
    }

    @Override
    public String toString() {
        return MoreObjects.toStringHelper(this)
            .add("source", this.getSource())
            .toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy