How to get integer value from textfield and retrieve the value to another class in java ??
I know how to get but if i used in another class he get me 0 value,,,
"this is in the GUI" x1,x2,y1,y2 predefined
private void X2_accesActionPerformed(java.awt.event.ActionEvent evt){
x2=(int)(Double.parseDouble(X2_acces.getText()));
}
I want to draw line the user inter 2 point (x1,y1) and (x2,y2) after that move the value to class draw line
"this is in class drawLine"
Next_frame nf=new Next_frame();
Point2D.Double p2=new Point2D.Double(nf.x2,nf.y2);