Package org.pentaho.reporting.designer.core.actions.report

Examples of org.pentaho.reporting.designer.core.actions.report.EditQueryAction.performEdit()


          if (selection instanceof DataFactory)
          {
            final EditQueryAction action = new EditQueryAction();
            action.setReportDesignerContext(getReportDesignerContext());
            action.performEdit((DataFactory) selection, null);
            return;
          }

          if (selection instanceof ReportQueryNode)
          {
View Full Code Here


            {
              return;
            }
            final EditQueryAction action = new EditQueryAction();
            action.setReportDesignerContext(getReportDesignerContext());
            action.performEdit(queryNode.getDataFactory(), queryNode.getQueryName());
            e.consume();
          }
        }
        catch (ReportDataFactoryException e1)
        {
View Full Code Here

          }
          if (selection instanceof DataFactory)
          {
            final EditQueryAction action = new EditQueryAction();
            action.setReportDesignerContext(getReportDesignerContext());
            action.performEdit((DataFactory) selection, null);
            return;
          }
          if (selection instanceof ReportQueryNode == false)
          {
            return;
View Full Code Here

          {
            return;
          }
          final EditQueryAction action = new EditQueryAction();
          action.setReportDesignerContext(getReportDesignerContext());
          action.performEdit(theQuery.getDataFactory(), theQuery.getQueryName());
        }
        catch (ReportDataFactoryException e1)
        {
          UncaughtExceptionsModel.getInstance().addException(e1);
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.