io.github.apexdevtools.apexls.api.ApexMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apex-ls_2.13 Show documentation
Show all versions of apex-ls_2.13 Show documentation
Salesforce Apex static analysis toolkit
The newest version!
/*
* 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 - 2025 Weber Informatics LLC | Privacy Policy