~ubuntu-branches/ubuntu/trusty/png-sixlegs/trusty

« back to all changes in this revision

Viewing changes to javapng-2.0/src/main/com/sixlegs/png/PixelProcessor.java

  • Committer: Package Import Robot
  • Author(s): Ying-Chun Liu (PaulLiu)
  • Date: 2012-05-18 03:14:11 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120518031411-b1iutqskocxf6t5j
Tags: 2.0-1
* New upstream release
* Update debian/watch to match the current upstream link
* Update README.Debian for repack information
* debian/rules: modify to generate javadoc

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
com.sixlegs.png - Java package to read and display PNG images
 
3
Copyright (C) 1998-2006 Chris Nokleberg
 
4
 
 
5
This program is free software; you can redistribute it and/or modify
 
6
it under the terms of the GNU General Public License as published by
 
7
the Free Software Foundation; either version 2 of the License, or
 
8
(at your option) any later version.
 
9
 
 
10
This program is distributed in the hope that it will be useful,
 
11
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
GNU General Public License for more details.
 
14
 
 
15
You should have received a copy of the GNU General Public License
 
16
along with this program; if not, write to the Free Software
 
17
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
18
 
 
19
Linking this library statically or dynamically with other modules is
 
20
making a combined work based on this library.  Thus, the terms and
 
21
conditions of the GNU General Public License cover the whole
 
22
combination.
 
23
 
 
24
As a special exception, the copyright holders of this library give you
 
25
permission to link this library with independent modules to produce an
 
26
executable, regardless of the license terms of these independent
 
27
modules, and to copy and distribute the resulting executable under
 
28
terms of your choice, provided that you also meet, for each linked
 
29
independent module, the terms and conditions of the license of that
 
30
module.  An independent module is a module which is not derived from
 
31
or based on this library.  If you modify this library, you may extend
 
32
this exception to your version of the library, but you are not
 
33
obligated to do so.  If you do not wish to do so, delete this
 
34
exception statement from your version.
 
35
*/
 
36
 
 
37
package com.sixlegs.png;
 
38
 
 
39
// not an interface for performance
 
40
abstract class PixelProcessor
 
41
{
 
42
    abstract public boolean process(int[] row, int xOffset, int xStep, int yStep, int y, int width);
 
43
}