You need to sign in to do that
Don't have an account?
Harry Training Department
Find apex/visualforce/aura component using apex?
Hi Team,
I recently moved to a new project where I've been asked to analyze existing code. I see code similar to below,
public class Zinc_AccountDetail {
@auraenabled public Id Id {get; set;}
@auraenabled public String Organizationname{get; set;}
}
How to find which apex/visual force/aura component is using Zinc_AccountDetail ?
I recently moved to a new project where I've been asked to analyze existing code. I see code similar to below,
public class Zinc_AccountDetail {
@auraenabled public Id Id {get; set;}
@auraenabled public String Organizationname{get; set;}
}
How to find which apex/visual force/aura component is using Zinc_AccountDetail ?
Dear Harry,
I think that difficult to get it by an easy way.
You should get dependency class first. After that, you must refer them to check the logic.
Regards,
Do the following steps,
- Open the developer console. press ctrl + shift + h and then enter the class name/component name which you want to search
- It will fetch you all the components which you searched for.
Please mark it as best answer if it is helpful to you :)Any suggestions?
You can search your class by retrieving all your lightning components and vf pages in local and search it in the sublime editor by opening lightning components and vf pages.