Examples of notifyNodeStructureChanged()


Examples of org.pentaho.reporting.engine.classic.core.AbstractReportDefinition.notifyNodeStructureChanged()

      {
        final ParameterDefinitionEntry definitionEntry = mdef.getParameterDefinition(i);
        if (definitionEntry == data)
        {
          mdef.removeParameterDefinition(i);
          report.notifyNodeStructureChanged();
          return new ParameterEditUndoEntry(i, definitionEntry, null);
        }
      }
      return null;
    }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.AbstractReportDefinition.notifyNodeStructureChanged()

      {
        final Expression definitionEntry = expressionCollection.getExpression(i);
        if (definitionEntry == data)
        {
          expressionCollection.removeExpression(i);
          report.notifyNodeStructureChanged();
          return new ExpressionRemoveUndoEntry(i, definitionEntry);
        }
      }
      return null;
    }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.AbstractReportDefinition.notifyNodeStructureChanged()

      {
        final DataFactory df = dataFactory.getReference(i);
        if (df == data)
        {
          dataFactory.remove(i);
          report.notifyNodeStructureChanged();
          return new DataSourceEditUndoEntry(i, df, null);
        }
      }
      return null;
    }
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.