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
sfcksfck 

how to use apex-lang managed package

I've installed the apex-lang managed package. In eclipse it appears in the managed packages section of the project but if I try to run any methods or instantiate anything it says that the type or method does not exist. If I open any classes it just says "(hidden)".

 

What am I doing wrong?

Best Answer chosen by Admin (Salesforce Developers) 
sfcksfck

Just found out the answer(s):

 

Code is hidden on purpose by the package authors.

To use methods and classes from the package you need to put the namespace prefix "al."

All Answers

sfcksfck

Just found out the answer(s):

 

Code is hidden on purpose by the package authors.

To use methods and classes from the package you need to put the namespace prefix "al."

This was selected as the best answer
SerobaSeroba
Where can I find more information about this apex-lang package?