Tabnine Logo
SVGRoot.build
Code IndexAdd Tabnine to your IDE (free)

How to use
build
method
in
com.kitfox.svg.SVGRoot

Best Java code snippets using com.kitfox.svg.SVGRoot.build (Showing top 8 results out of 315)

origin: com.metsci.ext.com.kitfox.svg/svg-salamander

  /**
   * Sets the dimensions of the device being rendered into.  This is used by
   * SVGRoot when its x, y, width or height parameters are specified as
   * percentages.
   */
  public void setDeviceViewport(Rectangle deviceViewport)
  {
    this.deviceViewport.setBounds(deviceViewport);
    if (root != null)
    {
      try
      {
        root.build();
      } catch (SVGException ex)
      {
        Logger.getLogger(SVGConst.SVG_LOGGER).log(Level.WARNING, 
          "Could not build document", ex);
      }
    }
  }
}
origin: guru.nidi.com.kitfox/svgSalamander

  /**
   * Sets the dimensions of the device being rendered into.  This is used by
   * SVGRoot when its x, y, width or height parameters are specified as
   * percentages.
   * @param deviceViewport
   */
  public void setDeviceViewport(Rectangle deviceViewport)
  {
    this.deviceViewport.setBounds(deviceViewport);
    if (root != null)
    {
      try
      {
        root.build();
      } catch (SVGException ex)
      {
        Logger.getLogger(SVGConst.SVG_LOGGER).log(Level.WARNING, 
          "Could not build document", ex);
      }
    }
  }
}
origin: blackears/svgSalamander

  /**
   * Sets the dimensions of the device being rendered into.  This is used by
   * SVGRoot when its x, y, width or height parameters are specified as
   * percentages.
   * @param deviceViewport
   */
  public void setDeviceViewport(Rectangle deviceViewport)
  {
    this.deviceViewport.setBounds(deviceViewport);
    if (root != null)
    {
      try
      {
        root.build();
      } catch (SVGException ex)
      {
        Logger.getLogger(SVGConst.SVG_LOGGER).log(Level.WARNING, 
          "Could not build document", ex);
      }
    }
  }
}
origin: com.barchart.kitfox/kitfox-svg-core

  /**
   * Sets the dimensions of the device being rendered into.  This is used by
   * SVGRoot when its x, y, width or height parameters are specified as
   * percentages.
   */
  public void setDeviceViewport(Rectangle deviceViewport)
  {
    this.deviceViewport.setBounds(deviceViewport);
    if (root != null)
    {
      try
      {
        root.build();
      } catch (SVGException ex)
      {
        ex.printStackTrace();
      }
    }
  }
}
origin: blackears/svgSalamander

build();
origin: com.metsci.ext.com.kitfox.svg/svg-salamander

build();
origin: com.barchart.kitfox/kitfox-svg-core

build();
origin: guru.nidi.com.kitfox/svgSalamander

build();
com.kitfox.svgSVGRootbuild

Popular methods of SVGRoot

  • contains
  • getBoundingBox
  • getDeviceHeight
  • getDeviceRect
  • getDeviceWidth
  • getPres
  • pick
  • prepareViewport
  • render
  • setDiagram
  • updateTime
    Updates all attributes in this diagram associated with a time event. Ie, all attributes with track i
  • getChild
  • updateTime,
  • getChild,
  • getNumChildren,
  • getStyleSheet,
  • renderToViewport,
  • setAttribute

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (Timer)
  • setRequestProperty (URLConnection)
  • getApplicationContext (Context)
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • BoxLayout (javax.swing)
  • JOptionPane (javax.swing)
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
  • Best plugins for Eclipse
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