summaryrefslogtreecommitdiffstats
path: root/bundle-plugin/src/test/java/com/yahoo/container/plugin/classanalysis/sampleclasses/Interface1.java
blob: d96180d7453ef14f7114cae9d19f41b91cfb3ac4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2017 Yahoo Holdings. 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 tonytv
 */
public interface Interface1 extends Interface2 {
    Image methodSignatureTest(Kernel kernel, BufferedImage image);
    int ignoreBasicTypes(float f) throws ImagingOpException;
    int[] ignoreArrayOfBasicTypes(int[][] l);
}