~ubuntu-branches/ubuntu/trusty/libjaxp1.3-java/trusty

« back to all changes in this revision

Viewing changes to org/w3c/dom/svg/SVGPathSegLinetoRel.java

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-11-17 14:36:04 UTC
  • mfrom: (3.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20101117143604-o14s4i5mg3sr0s0v
Tags: 1.3.05-1ubuntu1
* Merge with Debian, remaining changes:
  - Adjust versioned conflict with libxalan2-java.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
package org.w3c.dom.svg;
 
3
 
 
4
import org.w3c.dom.DOMException;
 
5
 
 
6
public interface SVGPathSegLinetoRel extends 
 
7
               SVGPathSeg {
 
8
  public float   getX( );
 
9
  public void      setX( float x )
 
10
                       throws DOMException;
 
11
  public float   getY( );
 
12
  public void      setY( float y )
 
13
                       throws DOMException;
 
14
}