congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
AbstractSVGPathSegList$SVGPathSegLinetoVerticalItem
Code IndexAdd Tabnine to your IDE (free)

How to use
AbstractSVGPathSegList$SVGPathSegLinetoVerticalItem
in
org.apache.batik.dom.svg

Best Java code snippets using org.apache.batik.dom.svg.AbstractSVGPathSegList$SVGPathSegLinetoVerticalItem (Showing top 20 results out of 315)

origin: fr.avianey.apache-xmlgraphics/batik

  protected String getStringValue(){
    return letter
        + ' '
        + Float.toString(getY());
  }
}
origin: org.apache.xmlgraphics/batik-anim

SVGPathSegLinetoVerticalItem ps =
  (SVGPathSegLinetoVerticalItem) s;
ps.setY(parameters[j[0]++]);
break;
origin: apache/batik

SVGPathSegLinetoVerticalItem ps =
  (SVGPathSegLinetoVerticalItem) s;
ps.setY(parameters[j[0]++]);
break;
origin: fr.avianey.apache-xmlgraphics/batik

case SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL:
case SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS:
  return new SVGPathSegLinetoVerticalItem
    (command, PATHSEG_LETTERS[command],
     parameters[j[0]++]);
origin: fr.avianey.apache-xmlgraphics/batik

SVGPathSegLinetoVerticalItem ps =
  (SVGPathSegLinetoVerticalItem) s;
ps.setY(parameters[j[0]++]);
break;
origin: apache/batik

case SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL:
case SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS:
  return new SVGPathSegLinetoVerticalItem(command, PATHSEG_LETTERS[command],
      parameters[j[0]++]);
origin: org.apache.xmlgraphics/batik-anim

case SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL:
case SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS:
  return new SVGPathSegLinetoVerticalItem
    (command, PATHSEG_LETTERS[command],
     parameters[j[0]++]);
origin: apache/batik

case SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL:
case SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS:
  pathSegItem = new SVGPathSegLinetoVerticalItem(pathSeg);
  break;
default:
origin: fr.avianey.apache-xmlgraphics/batik

case SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL:
case SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS:
  pathSegItem = new SVGPathSegLinetoVerticalItem(pathSeg);
  break;
default:
origin: apache/batik

public SVGPathSegLinetoVerticalItem(SVGPathSeg pathSeg){
  type = pathSeg.getPathSegType();
  switch(type){
  case SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS:
    letter = PATHSEG_LINETO_VERTICAL_ABS_LETTER;
    setY(((SVGPathSegLinetoVerticalAbs)pathSeg).getY());
    break;
  case SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL:
    letter = PATHSEG_LINETO_VERTICAL_REL_LETTER;
    setY(((SVGPathSegLinetoVerticalRel)pathSeg).getY());
    break;
  default:
  }
}
origin: fr.avianey.apache-xmlgraphics/batik

public SVGPathSegLinetoVerticalItem(SVGPathSeg pathSeg){
  type = pathSeg.getPathSegType();
  switch(type){
  case SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS:
    letter = PATHSEG_LINETO_VERTICAL_ABS_LETTER;
    setY(((SVGPathSegLinetoVerticalAbs)pathSeg).getY());
    break;
  case SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL:
    letter = PATHSEG_LINETO_VERTICAL_REL_LETTER;
    setY(((SVGPathSegLinetoVerticalRel)pathSeg).getY());
    break;
  default:
  }
}
origin: apache/batik

public void setY(float y){
  super.setY(y);
  resetAttribute();
}
origin: apache/batik

/**
 * Implements {@link org.apache.batik.parser.PathHandler#linetoVerticalAbs(float)}.
 */
public void linetoVerticalAbs(float y) throws ParseException {
  listHandler.item(new SVGPathSegLinetoVerticalItem(SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS, PATHSEG_LINETO_VERTICAL_ABS_LETTER,
      y));
}
origin: fr.avianey.apache-xmlgraphics/batik

/**
 * Implements {@link org.apache.batik.parser.PathHandler#linetoVerticalAbs(float)}.
 */
public void linetoVerticalAbs(float y) throws ParseException {
  listHandler.item(new SVGPathSegLinetoVerticalItem
    (SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS,PATHSEG_LINETO_VERTICAL_ABS_LETTER,
     y));
}
origin: fr.avianey.apache-xmlgraphics/batik

public void setY(float y){
  super.setY(y);
  resetAttribute();
}
origin: fr.avianey.apache-xmlgraphics/batik

public SVGPathSegLinetoVerticalItem(short type, String letter,
                 float value){
  super(type,letter);
  this.setY(value);
}
origin: apache/batik

/**
 * Implements {@link org.apache.batik.parser.PathHandler#linetoVerticalRel(float)}.
 */
public void linetoVerticalRel(float y) throws ParseException {
  listHandler.item(new SVGPathSegLinetoVerticalItem(SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL, PATHSEG_LINETO_VERTICAL_REL_LETTER,
      y));
}
origin: apache/batik

  protected String getStringValue(){
    return letter
        + ' '
        + Float.toString(getY());
  }
}
origin: apache/batik

public SVGPathSegLinetoVerticalItem(short type, String letter,
                 float value){
  super(type,letter);
  this.setY(value);
}
origin: fr.avianey.apache-xmlgraphics/batik

/**
 * Implements {@link org.apache.batik.parser.PathHandler#linetoVerticalRel(float)}.
 */
public void linetoVerticalRel(float y) throws ParseException {
  listHandler.item(new SVGPathSegLinetoVerticalItem
    (SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL,PATHSEG_LINETO_VERTICAL_REL_LETTER,
     y));
}
org.apache.batik.dom.svgAbstractSVGPathSegList$SVGPathSegLinetoVerticalItem

Most used methods

  • <init>
  • setY
  • getY
  • resetAttribute

Popular in Java

  • Making http post requests using okhttp
  • setScale (BigDecimal)
  • runOnUiThread (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • 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