aboutsummaryrefslogtreecommitdiffstats
path: root/bundle-plugin/src/test/java/com/yahoo/container/plugin/classanalysis/sampleclasses/Base.java
blob: 03360efc1b6a2093477b2559cfc42d687897dcd7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// 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.Kernel;

/**
 * Input for class analysis tests.
 * @author Tony Vaagenes
 */
public class Base implements Interface1, Interface2 {
    @Override
    public Image methodSignatureTest(Kernel kernel, BufferedImage image) {
        return null;
    }

    @Override
    public int ignoreBasicTypes(float f) {
        return 0;
    }

    @Override
    public int[] ignoreArrayOfBasicTypes(int[][] l) {
        return new int[0];
    }
}