~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/ikvm/openjdk/sun/awt/image/ImagingLib.java

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 1997, 2007, Oracle and/or its affiliates. All rights reserved.
 
3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 
4
 *
 
5
 * This code is free software; you can redistribute it and/or modify it
 
6
 * under the terms of the GNU General Public License version 2 only, as
 
7
 * published by the Free Software Foundation.  Oracle designates this
 
8
 * particular file as subject to the "Classpath" exception as provided
 
9
 * by Oracle in the LICENSE file that accompanied this code.
 
10
 *
 
11
 * This code is distributed in the hope that it will be useful, but WITHOUT
 
12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 
14
 * version 2 for more details (a copy is included in the LICENSE file that
 
15
 * accompanied this code).
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License version
 
18
 * 2 along with this work; if not, write to the Free Software Foundation,
 
19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 
20
 *
 
21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 
22
 * or visit www.oracle.com if you need additional information or have any
 
23
 * questions.
 
24
 */
 
25
 
 
26
package sun.awt.image;
 
27
 
 
28
import java.awt.geom.AffineTransform;
 
29
import java.awt.image.AffineTransformOp;
 
30
import java.awt.image.BufferedImage;
 
31
import java.awt.image.BufferedImageOp;
 
32
import java.awt.image.ByteLookupTable;
 
33
import java.awt.image.ConvolveOp;
 
34
import java.awt.image.Kernel;
 
35
import java.awt.image.LookupOp;
 
36
import java.awt.image.LookupTable;
 
37
import java.awt.image.RasterOp;
 
38
import java.awt.image.Raster;
 
39
import java.awt.image.WritableRaster;
 
40
import java.security.AccessController;
 
41
import java.security.PrivilegedAction;
 
42
 
 
43
/**
 
44
 * This class provides a hook to access platform-specific
 
45
 * imaging code.
 
46
 *
 
47
 * If the implementing class cannot handle the op, tile format or
 
48
 * image format, the method will return null;
 
49
 * If there is an error when processing the
 
50
 * data, the implementing class may either return null
 
51
 * (in which case our java code will be executed) or may throw
 
52
 * an exception.
 
53
 */
 
54
public class ImagingLib {
 
55
 
 
56
    public static WritableRaster filter(RasterOp op, Raster src,
 
57
                                        WritableRaster dst) {
 
58
        return null;
 
59
    }
 
60
 
 
61
 
 
62
    public static BufferedImage filter(BufferedImageOp op, BufferedImage src,
 
63
                                       BufferedImage dst)
 
64
    {
 
65
        return null;
 
66
    }
 
67
}