I am trying to get data from one array in a class to another class (so that I can copy the result). I know that in general you would use a get-set method to achieve this, however, I am not sure of how to accomplish that with the classes I have.
This method (in my back-end class) randomizes an array of labels and I want the result in 2 different classes. The one class I can get the result because I have an array of Labels, as is also the case in the other class (but I want the same result from the first class, not another different randomized array)
public Label[] randomise(Label[] lbl){
Random randomiseArr = new Random();
for (int i = 0; i < lbl.length; i++) {
int randomIndexToSwap = randomiseArr.nextInt(lbl.length);
Label temp = lbl[randomIndexToSwap];
lbl[randomIndexToSwap] = lbl[i];
lbl[i] = temp;
}
return lbl;
}
This is my first class (the one where I get my result, the labels have been created above - i just didn't include those):
public void initialize(URL url, ResourceBundle rb) {
backend back = new backend();
Label[] lbl = {t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14,
t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25};
int ranClr = (int) (Math.random() * (10 - 1)) + 1;
if (ranClr <= 5) {
back.redTeam(back.randomise(lbl), clr1, clr2, clr3, clr4);
} else {
back.blueTeam(back.randomise(lbl), clr1, clr2, clr3, clr4);
}
}
And this is the class in which I would like the exact same result of the randomizing method:
public void initialize(URL url, ResourceBundle rb) {
backend back = new backend();
Button[] btn = {btn1, btn2, btn3, btn4, btn5, btn6, btn7, btn8, btn9,
btn10, btn11, btn12, btn13, btn14, btn15, btn16, btn17, btn18, btn19,
btn20, btn21, btn22, btn23, btn24, btn25};
Label[] lbl = {lbl1, lbl2, lbl3, lbl4, lbl5, lbl6, lbl7, lbl8, lbl9,
lbl10, lbl11, lbl12, lbl13, lbl14, lbl15, lbl16, lbl17, lbl18, lbl19,
lbl20, lbl21, lbl22, lbl23, lbl24, lbl25};
}