One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
##Introduction
This gist contains the Simple Trigger Pattern for Salesforce (STP). This pattern was developed by Salesforce MVP Vivek M. Chawla (@VivekMChawla), a Salesforce Certified App Builder, Platform Developer I and II, and Advanced Administrator.
The Simple Trigger Pattern can be used to quick-start development of new triggers. It encapsulates several best-practices, including "One Trigger per Object", "No Business Logic in Triggers", and "Recursion Prevention Using Static Variables". The STP also facilitates adoption of the architectural best practice of Separation of Concerns.
NOTE: If you are looking for the Git Repository for the Simple Trigger Pattern, you can find it here: bit.ly/SimpleTriggerPattern
##Contents
This gist contains multiple files. Each file contains a specific type of Apex or Visualforce comment header.
When code is no longer used, but can not be deleted from your org, add the @deprecated
annotation to the File or Method Header.
/* Inline Comment Decorators (100 / 80 Column Max) - Created by [email protected] */ | |
//─────────────────────────────────────────────────────────────────────────────────────────────────┐ | |
// 100 chars | |
//─────────────────────────────────────────────────────────────────────────────────────────────────┘ | |
//───────────────────────────────────────────────────────────────────────────────────────────────┐ | |
// 98 chars | |
//───────────────────────────────────────────────────────────────────────────────────────────────┘ | |
//─────────────────────────────────────────────────────────────────────────────────────────────┐ | |
// 96 chars | |
//─────────────────────────────────────────────────────────────────────────────────────────────┘ |