Examples of notifyNodePropertiesChanged()


Examples of org.pentaho.reporting.engine.classic.core.Element.notifyNodePropertiesChanged()

          final String name = names[j];
          target.setAttribute(namespace, name, oldAttributes.getAttribute(namespace, name), false);
        }
      }

      target.notifyNodePropertiesChanged();
    }

    public void redo(final ReportDocumentContext renderContext)
    {
      final Element target = (Element) ModelUtility.findElementById(renderContext.getReportDefinition(), element);
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.Element.notifyNodePropertiesChanged()

          final String name = names[j];
          target.setAttribute(namespace, name, newAttributes.getAttribute(namespace, name), false);
        }
      }

      target.notifyNodePropertiesChanged();
    }

    public UndoEntry merge(final UndoEntry newEntry)
    {
      return null;
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.Element.notifyNodePropertiesChanged()

        if (value == null)
        {
          undos.add(new StyleExpressionEditUndoEntry
              (element.getObjectID(), metaData.getStyleKey(), attribute, null));
          element.setStyleExpression(metaData.getStyleKey(), null);
          element.notifyNodePropertiesChanged();
        }
        else
        {
          final Expression expression = value.getInstance();
          undos.add(new StyleExpressionEditUndoEntry
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.Element.notifyNodePropertiesChanged()

        {
          final Expression expression = value.getInstance();
          undos.add(new StyleExpressionEditUndoEntry
              (element.getObjectID(), metaData.getStyleKey(), attribute, expression));
          element.setStyleExpression(metaData.getStyleKey(), expression);
          element.notifyNodePropertiesChanged();
        }
      }
      undo.addChange(Messages.getString("StyleChange"), new CompoundUndoEntry((UndoEntry[]) undos.toArray(new UndoEntry[undos.size()])));

    }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.Element.notifyNodePropertiesChanged()

        newStyleData[i] = MassElementStyleUndoEntryBuilder.computeStyleChangeSet(visualElement);
        newExpressions[i] = ElementFormatUndoEntry.computeExpressions(visualElement);
        ids[i] = visualElement.getObjectID();

        // make sure everyone gets informed of any style change we made
        visualElement.notifyNodePropertiesChanged();
      }

      return new ElementFormatUndoEntry(ids, oldStyleData, newStyleData, oldExpressions, newExpressions);
    }
  }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.Element.notifyNodePropertiesChanged()

          final String attributeName = attributeNames[j];
          element.setAttribute(attributeNamespace, attributeName,
              oldAttributes.getAttribute(attributeNamespace, attributeName), false);
        }
      }
      element.notifyNodePropertiesChanged();
    }

    public void redo(final ReportDocumentContext renderContext)
    {
      final Element element = (Element) ModelUtility.findElementById(renderContext.getReportDefinition(), target);
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.Element.notifyNodePropertiesChanged()

          final String attributeName = attributeNames[j];
          element.setAttribute(attributeNamespace, attributeName,
              newAttributes.getAttribute(attributeNamespace, attributeName), false);
        }
      }
      element.notifyNodePropertiesChanged();
    }

    public UndoEntry merge(final UndoEntry newEntry)
    {
      return null;
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.Element.notifyNodePropertiesChanged()

          final String name = names[j];
          target.setAttribute(namespace, name, oldAttributes.getAttribute(namespace, name), false);
        }
      }

      target.notifyNodePropertiesChanged();
    }

    public void redo(final ReportRenderContext renderContext)
    {
      final Element target = (Element) ModelUtility.findElementById(renderContext.getReportDefinition(), element);
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.Element.notifyNodePropertiesChanged()

          final String name = names[j];
          target.setAttribute(namespace, name, newAttributes.getAttribute(namespace, name), false);
        }
      }

      target.notifyNodePropertiesChanged();
    }

    public UndoEntry merge(final UndoEntry newEntry)
    {
      return null;
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.Element.notifyNodePropertiesChanged()

          final String attributeName = attributeNames[j];
          element.setAttribute(attributeNamespace, attributeName,
              oldAttributes.getAttribute(attributeNamespace, attributeName), false);
        }
      }
      element.notifyNodePropertiesChanged();
    }

    public void redo(final ReportRenderContext renderContext)
    {
      final Element element = (Element) ModelUtility.findElementById(renderContext.getReportDefinition(), target);
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.