Search in sources :

Example 1 with FastMatrixProjection

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];
}
Also used : Function(com.ramussoft.pb.Function) NFunction(com.ramussoft.pb.data.negine.NFunction) FastMatrixProjection(com.ramussoft.pb.print.xml.FastMatrixProjection)

Aggregations

Function (com.ramussoft.pb.Function)1 NFunction (com.ramussoft.pb.data.negine.NFunction)1 FastMatrixProjection (com.ramussoft.pb.print.xml.FastMatrixProjection)1