aboutsummaryrefslogtreecommitdiffstats
path: root/bundle-plugin/src/test/java/com/yahoo/container/plugin/classanalysis/sampleclasses/Interface1.java
blob: f3b82609e4fc4b00744d6c7a5bb3427349161c81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.plugin.classanalysis.sampleclasses;

import java.awt.*;
import java.awt.image.BufferedImage;
import java.awt.image.ImagingOpException;
import java.awt.image.Kernel;

/**
 * Input for class analysis tests.
 * @author Tony Vaagenes
 */
public interface Interface1 extends Interface2 {
    Image methodSignatureTest(Kernel kernel, BufferedImage image);
    int ignoreBasicTypes(float f) throws ImagingOpException;
    int[] ignoreArrayOfBasicTypes(int[][] l);
}