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

io.github.mivek.model.WindShear Maven / Gradle / Ivy

package io.github.mivek.model;

import io.github.mivek.internationalization.Messages;
import org.apache.commons.lang3.builder.ToStringBuilder;

/**
 * Class representing the wind shear.
 * @author mivek
 */
public class WindShear extends Wind {
    /** The height of the wind shear in feet. */
    private int height;

    /**
     * @return the height
     */
    public int getHeight() {
        return height;
    }

    /**
     * @param pHeight the height to set
     */
    public void setHeight(final int pHeight) {
        height = pHeight;
    }

    @Override
    public final String toString() {
        return new ToStringBuilder(this).
                appendSuper(super.toString()).
                append(Messages.getInstance().getString("ToString.height.feet"), height).
                toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy