~ubuntu-branches/debian/sid/latexdraw/sid

« back to all changes in this revision

Viewing changes to latexDraw/util/LaTeXDrawPoint2D.java

  • Committer: Bazaar Package Importer
  • Author(s): Stuart Prescott
  • Date: 2009-07-15 23:35:52 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090715233552-2bblktyf2lmrkyo3
Tags: 2.0.3+1-1
* New upstream release.
* Add additional Recommended packages for new export features.
* Fix typo in long description, with thanks to Kai Weber (Closes: #529195).
* Bump standards to 3.8.2 (no changes).

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
import java.awt.geom.Point2D;
6
6
import java.io.IOException;
7
7
import java.io.ObjectInputStream;
8
 
import java.io.Serializable;
9
8
 
10
9
import latexDraw.figures.Line;
11
10
 
29
28
 * @author Arnaud BLOUIN<br>
30
29
 * @version 2.0.0<br>
31
30
 */
32
 
public class LaTeXDrawPoint2D extends Point2D.Double implements Serializable
 
31
public class LaTeXDrawPoint2D extends Point2D.Double
33
32
{
34
33
        private static final long serialVersionUID = 1L;
35
34