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

io.github.apexdevtools.apexls.api.ApexMethod Maven / Gradle / Ivy

/*
 * Copyright (c) 2022 FinancialForce.com, inc. All rights reserved.
 */

package io.github.apexdevtools.apexls.api;

import io.github.apexdevtools.apexls.types.ApexLocationAdapter;

import java.util.List;

public interface ApexMethod {
    String getMethodName();
    boolean isConstructor();
    String getModifiers();
    ApexTypeId getReturnType();
    List getParameters();
    ApexLocationAdapter getLocation();
    ApexType getDefiningType();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy