Suppose you have two speaker mount tables, such as:
|TableOne |
|inputOne|outputOne()|
|7 |14 |
and
|TableTwo |
|inputTwo|outputTwo()|
|6 |20 |
then in the appropriate code you can save the object that you want to pass in a static variable (here I use int, but any type will work):
public class TableOne extends fit.ColumnFixture {
public static int result;
public int inputOne;
public int outputOne() {
result = inputOne * 2;
return result;
}
}
public class TableTwo extends fit.ColumnFixture {
public int inputTwo;
public int outputTwo() {
return TableOne.result + inputTwo;
}
}
ColumnFixture s, , ( , DoFixture), .