diff --git a/src/eu/finwe/obrazki/Util.java b/src/eu/finwe/obrazki/Util.java index 056d790..1d19095 100644 --- a/src/eu/finwe/obrazki/Util.java +++ b/src/eu/finwe/obrazki/Util.java @@ -672,6 +672,32 @@ public Point2D getPoint2D(Point2D srcPt, Point2D dstPt) + } + + static private class FiltrNicNieRobiÄ…cy extends Filtr + { + private final typFiltra typ; + + public FiltrNicNieRobiÄ…cy(typFiltra typ) { + this.typ = typ; + } + + @Override + public BufferedImage filter(BufferedImage src, BufferedImage dest) { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + @Override + public Rectangle2D getBounds2D(BufferedImage src) { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + @Override + public Point2D getPoint2D(Point2D srcPt, Point2D dstPt) { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + }