summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/debug/JrtMethodSignature.java
blob: 0383360487f3706769d1bd154f539084f2866a97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.debug;

/**
 * Represents the signatures of a jrt method.
 *
 * @author tonytv
 */
final class JrtMethodSignature {
    final String returnTypes;
    final String parametersTypes;

    JrtMethodSignature(String returnTypes, String parametersTypes) {
        this.returnTypes = returnTypes;
        this.parametersTypes = parametersTypes;
    }
}