Package reportgen.prototype.context.group

Examples of reportgen.prototype.context.group.ExpressionEditorPanel


        super(parent, "Параметры таблицы");
        initComponents();
        this.value = aCell;
        this.tableListener = aTableListener;

        ExpressionEditorPanel panel = value.getValue().getPanel(this);
        panel.addExpressionListener(this);
        mainPanel.add(panel, BorderLayout.CENTER);

        colLabel.setText("Столбец: " + aCell.getColReference().getTitle());
        rowLabel.setText("Строка: " + aCell.getRowReference().getTitle());
View Full Code Here


        super(parent, "Редактирование математического выражения");
        initComponents();
        assert expression != null;

        //todo does not save?
        ExpressionEditorPanel panel = expression.getPanel(this);
        container.add(panel);
    }
View Full Code Here

TOP

Related Classes of reportgen.prototype.context.group.ExpressionEditorPanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.