- Mastering Application Development with Force.com
- Kevin J. Poorman
- 179字
- 2021-07-23 14:33:48
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code, and code mixed in with text are shown as follows: A block of code is set as follows:
public class AccountTriggerHandler extends triggerHandler { public override void beforeInsert() { AccountLib.sanitizeDataForAccounts(Trigger.new); ContactLib.createContacts(Trigger.new); OpportunityLib.createOpps(Trigger.new); } }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
global void execute(Database.BatchableContext BC, List<Account> scope) { List<Account> toDelete = new List<Account>(); List<Account> toUpdate = new List<Account>(); for (Account a : scope) { if(a.bad_account__c){ toDelete.add(a); } else { toUpdate.add(a); }
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Another tab in the bottom pane is the Tests tab."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
推薦閱讀
- Cross-platform Desktop Application Development:Electron,Node,NW.js,and React
- Mastering Selenium WebDriver
- 深入淺出Spring Boot 2.x
- INSTANT CakePHP Starter
- Functional Kotlin
- Mastering Predictive Analytics with Python
- iOS開(kāi)發(fā)實(shí)戰(zhàn):從入門(mén)到上架App Store(第2版) (移動(dòng)開(kāi)發(fā)叢書(shū))
- 低代碼平臺(tái)開(kāi)發(fā)實(shí)踐:基于React
- Python從入門(mén)到精通
- C語(yǔ)言程序設(shè)計(jì)
- Software Development on the SAP HANA Platform
- Hands-On Dependency Injection in Go
- 嵌入式C編程實(shí)戰(zhàn)
- Spring Web Services 2 Cookbook
- Spring Boot 2+Thymeleaf企業(yè)應(yīng)用實(shí)戰(zhàn)