1 18 package org.apache.batik.parser; 19 20 26 public class DefaultPointsHandler implements PointsHandler { 27 30 public final static DefaultPointsHandler INSTANCE 31 = new DefaultPointsHandler(); 32 33 36 protected DefaultPointsHandler() { 37 } 38 39 42 public void startPoints() throws ParseException { 43 } 44 45 48 public void point(float x, float y) throws ParseException { 49 } 50 51 54 public void endPoints() throws ParseException { 55 } 56 } 57 | Popular Tags |