Netbeans Java
Design a UML class diagram for the leading class.
Design a pseudocode algorithm for any method that will have two or more statements.
Design a pseudocode algorithm for the test class .
Apply JLCs for naming the class, the variables, and the method
Write a Java program that can be used to find the area and perimeter of a rectangle. In designing your program, given consideration to the following:
Write a class called Measurement with the following features:
Member variables - length, width, area, and perimeter.
Constructor that accepts the length and width of each rectangle.
Instance mutator method calculates that computes the area and the perimeter of a rectangle.
Instance mutator methods, one to change length, and the other to change the width.
Accessor methods that returns the value of each variable.
There doesn't need to be a test class