December 2017
Beginner
273 pages
5h 49m
English
© Michael Wicherski 2017
Michael Wicherski, Beginning Salesforce Developer, https://doi.org/10.1007/978-1-4842-3300-9_6
Michael Wicherski1
(1)Los Angeles, California, USA
Time to put all that theory from Chapter 5 to good use. This chapter will focus on the creation of class (and trigger) files and understanding when they are needed.
Classes are the basic building blocks of your application logic. They are containers to be used for storing your Apex code which can be used to build custom object definitions, create methods (functions), define attributes, and so much more. Triggers are also a type of class, but are special and handled differently on the force.com platform, so they get their own section. For now, ...