All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.robovm.compiler.plugin.invokedynamic.lambda.LambdaClass Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2014 RoboVM AB
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */
package org.robovm.compiler.plugin.invokedynamic.lambda;

import java.util.List;

import soot.Type;

public class LambdaClass {
    private final String lambdaClassName;
    private final byte[] classData;
    private final String targetMethodName;
    private final List targetMethodParameters;
    private final Type targetMethodReturnType;

    public LambdaClass(String lambdaClassName, byte[] classData, String targetMethodName,
            List targetMethodParameters, Type targetMethodReturnType) {
        this.lambdaClassName = lambdaClassName;
        this.classData = classData;
        this.targetMethodName = targetMethodName;
        this.targetMethodParameters = targetMethodParameters;
        this.targetMethodReturnType = targetMethodReturnType;
    }

    public String getLambdaClassName() {
        return lambdaClassName;
    }

    public byte[] getClassData() {
        return classData;
    }

    public String getTargetMethodName() {
        return targetMethodName;
    }

    public List getTargetMethodParameters() {
        return targetMethodParameters;
    }

    public Type getTargetMethodReturnType() {
        return targetMethodReturnType;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy