use of com.ramussoft.pb.print.xml.FastMatrixProjection in project ramus by Vitaliy-Yakovchuk.
the class AbstractDataPlugin method getFastMatrixProjectionIDEF0.
public FastMatrixProjection getFastMatrixProjectionIDEF0(final int type, Function function) {
// if (idef0s[type] == null) {
Function base = function;
while (base.getParentRow() != null) {
base = (Function) base.getParentRow();
}
idef0s[type] = new FastMatrixProjection(this, type, -1, base);
// }
return idef0s[type];
}
Aggregations