function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
raj kiranraj kiran 

how to visually identify extensions in eclipse apex class or in developer console ?

Hi,

I have written a custom controller class  and couple of extension for standard controller to overide some basic functionality in some scenarios like adding more to save method etc.
My question is that if we open developer console , or if we acess apex class via eclipse how can we identify the extension with a custom controller class. As both are apex class in salesforce, i dont find any way to differentiate  between them?

Is naming convetion only way to identify? or is there any other way around?
Shashikant SharmaShashikant Sharma
Only way is to indentify is to see the constructor of the class. The extension class will have parameter Standard Contrller ( If Standard Controller is an Object Type ) or Controller Class .

Thanks
Shashikant