All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openl.rules.ui.tree.OpenMethodsGroupTreeNodeBuilder Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
package org.openl.rules.ui.tree;

import org.openl.rules.lang.xls.OverloadedMethodsDictionary;

/**
 * Base tree node builder that uses information about method groups in build process.
 */
public abstract class OpenMethodsGroupTreeNodeBuilder extends BaseTableTreeNodeBuilder {

    /**
     * Method groups dictionary.
     */
    private OverloadedMethodsDictionary openMethodGroupsDictionary;

    public void setOpenMethodGroupsDictionary(OverloadedMethodsDictionary openMethodGroupsDictionary) {
        this.openMethodGroupsDictionary = openMethodGroupsDictionary;
    }

    public OverloadedMethodsDictionary getOpenMethodGroupsDictionary() {
        return openMethodGroupsDictionary;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy