I know the headline must be not clear enough, I do not know how else to right it in short, so let me explain myself.
I'm doing a java project, where I need to make some form to a class in gui.
Let's say I have the Student class.
Student.java
public class Student {
int studendID;
String studentName;
// and so on...
}
I've heard there is a way to make a gui form of any class i want, so that way the user its self can write the parameters of the class.
In that case it will auto make 2 labels with "studendID" and "studentName" and 2 rooms for text to import the user's choice.
And in case i would like to enter other class, i wouldn't need to build up again all the form to match another class, but it will do it automatic.
I've heard that it is possible, and i have no idea how.
i've tried looking through google, and i found nothing even similiar to it.