Tabnine Logo
TextNode.fireGraphicsNodeChangeStarted
Code IndexAdd Tabnine to your IDE (free)

How to use
fireGraphicsNodeChangeStarted
method
in
org.apache.batik.bridge.TextNode

Best Java code snippets using org.apache.batik.bridge.TextNode.fireGraphicsNodeChangeStarted (Showing top 9 results out of 315)

origin: apache/batik

/**
 * Sets the location of this text node.
 *
 * @param newLocation the new location of this text node
 */
public void setLocation(Point2D newLocation){
  fireGraphicsNodeChangeStarted();
  invalidateGeometryCache();
  this.location = newLocation;
  fireGraphicsNodeChangeCompleted();
}
origin: org.apache.xmlgraphics/batik-bridge

/**
 * Sets the location of this text node.
 *
 * @param newLocation the new location of this text node
 */
public void setLocation(Point2D newLocation){
  fireGraphicsNodeChangeStarted();
  invalidateGeometryCache();
  this.location = newLocation;
  fireGraphicsNodeChangeCompleted();
}
origin: apache/batik

/**
 * Sets the attributed character iterator of this text node.
 *
 * @param newAci the new attributed character iterator
 */
public void setAttributedCharacterIterator
  (AttributedCharacterIterator newAci) {
  fireGraphicsNodeChangeStarted();
  invalidateGeometryCache();
  this.aci = newAci;
  text = null;
  textRuns = null;
  fireGraphicsNodeChangeCompleted();
}
origin: fr.avianey.apache-xmlgraphics/batik

/**
 * Sets the location of this text node.
 *
 * @param newLocation the new location of this text node
 */
public void setLocation(Point2D newLocation){
  fireGraphicsNodeChangeStarted();
  invalidateGeometryCache();
  this.location = newLocation;
  fireGraphicsNodeChangeCompleted();
}
origin: fr.avianey.apache-xmlgraphics/batik

/**
 * Sets the attributed character iterator of this text node.
 *
 * @param newAci the new attributed character iterator
 */
public void setAttributedCharacterIterator
  (AttributedCharacterIterator newAci) {
  fireGraphicsNodeChangeStarted();
  invalidateGeometryCache();
  this.aci = newAci;
  text = null;
  textRuns = null;
  fireGraphicsNodeChangeCompleted();
}
origin: org.apache.xmlgraphics/batik-bridge

/**
 * Sets the attributed character iterator of this text node.
 *
 * @param newAci the new attributed character iterator
 */
public void setAttributedCharacterIterator
  (AttributedCharacterIterator newAci) {
  fireGraphicsNodeChangeStarted();
  invalidateGeometryCache();
  this.aci = newAci;
  text = null;
  textRuns = null;
  fireGraphicsNodeChangeCompleted();
}
origin: org.apache.xmlgraphics/batik-bridge

public void swapTextPaintInfo(TextPaintInfo newInfo, 
               TextPaintInfo oldInfo) {
  fireGraphicsNodeChangeStarted();
  invalidateGeometryCache();
  oldInfo.set(newInfo);
  fireGraphicsNodeChangeCompleted();
}
               
origin: fr.avianey.apache-xmlgraphics/batik

public void swapTextPaintInfo(TextPaintInfo newInfo, 
               TextPaintInfo oldInfo) {
  fireGraphicsNodeChangeStarted();
  invalidateGeometryCache();
  oldInfo.set(newInfo);
  fireGraphicsNodeChangeCompleted();
}
               
origin: apache/batik

public void swapTextPaintInfo(TextPaintInfo newInfo, 
               TextPaintInfo oldInfo) {
  fireGraphicsNodeChangeStarted();
  invalidateGeometryCache();
  oldInfo.set(newInfo);
  fireGraphicsNodeChangeCompleted();
}
               
org.apache.batik.bridgeTextNodefireGraphicsNodeChangeStarted

Popular methods of TextNode

  • getTextRuns
    Returns a list of text runs.
  • getAttributedCharacterIterator
    Returns the attributed character iterator of this text node.
  • getHighlightShape
    Returns the shape used to outline this text node.
  • getLocation
    Returns the location of this text node.
  • getMarkerForChar
    Return the marker for the character at index in this nodes AttributedCharacterIterator. Before Char
  • setTextPainter
    Sets the text painter of this text node. If the specified text painter is null, this text node will
  • setTextRuns
    Sets the list of text runs of this text node.
  • <init>
    Constructs a new empty TextNode.
  • contains
  • fireGraphicsNodeChangeCompleted
  • getBounds
  • getGeometryBounds
    Returns the bounds of the area covered by this node, without taking any of its rendering attribute i
  • getBounds,
  • getGeometryBounds,
  • getGlobalTransform,
  • getPrimitiveBounds,
  • getRenderingHints,
  • getRoot,
  • getText,
  • invalidateGeometryCache,
  • setAttributedCharacterIterator

Popular in Java

  • Running tasks concurrently on multiple threads
  • getExternalFilesDir (Context)
  • putExtra (Intent)
  • getSystemService (Context)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • Permission (java.security)
    Legacy security code; do not use.
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now