Skip to main content

Navigate and Edit Source Code

Learning Objectives

After completing this unit, you’ll be able to:
  • Create an Apex class.
  • Execute Apex code.
  • Create a Lightning component.
  • Create a Visualforce page.

Create and Execute Apex Code

Now that you’ve started to get comfortable with the Developer Console, let’s use it to view, modify, and run the systems powering your spaceship. In other words, let’s get cracking with some code!

Create an Apex Class

Apex is a Salesforce programming language that you can use to customize business processes in your org. If you like fancy words, you might call Apex a strongly typed, object-oriented language that allows developers to execute flow and transaction-control statements on the Lightning Platform server, in conjunction with calls to the Lightning Platform APIs. Or you can just call it a programming language that looks a lot like Java code and interacts with the data in your org. You use it to add business logic. For example, if you want to alert an account owner when contact information changes, Apex is the answer.

To learn more about Apex and how it works, check out the Apex Basics & Database module. For now, don’t worry too much about the code—our goal is to get to know the Developer Console.

Say you need to change your flight path to avoid asteroid 2014 QO441. You don’t have time to contact the ground control team to tell them about your course correction. Let’s write some Apex code that sends an email to your Mission Specialist on Earth every time you change your flight path.

  1. In the Developer Console, select File | New | Apex Class.
  2. When prompted, name your Apex class EmailMissionSpecialist.
  3. When the text editor opens, copy and paste the following code into the EmailMissionSpecialist.apxc tab, replacing the tab’s original contents.
    public class EmailMissionSpecialist {
       // Public method
       public void sendMail(String address, String subject, String body) {
          // Create an email message object
          Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage();
          String[] toAddresses = new String[] {address};
          mail.setToAddresses(toAddresses);
          mail.setSubject(subject);
          mail.setPlainTextBody(body);
          // Pass this email message to the built-in sendEmail method 
          // of the Messaging class
          Messaging.SendEmailResult[] results = Messaging.sendEmail(
                                    new Messaging.SingleEmailMessage[] { mail });
          // Call a helper method to inspect the returned results
          inspectResults(results);
       }
       // Helper method
       private static Boolean inspectResults(Messaging.SendEmailResult[] results) {
          Boolean sendResult = true;
          // sendEmail returns an array of result objects.
          // Iterate through the list to inspect results. 
          // In this class, the methods send only one email, 
          // so we should have only one result.
          for (Messaging.SendEmailResult res : results) {
             if (res.isSuccess()) {
                System.debug('Email sent successfully');
             }
             else {
                sendResult = false;
                System.debug('The following errors occurred: ' + res.getErrors());                 
             }
          }
          return sendResult;
       }
    }
  4. Save your code using File | Save. The Developer Console checks to make sure that your code doesn’t contain any errors when you save it.
    Note: If your code isn’t syntactically correct, an error shows up in the Problems tab. You can use the error details to correct your code.
If you close this window, you can use the console to open this class or any other saved Apex class. Let’s try that now.
  1. To close the EmailMissionSpecialist class, click the ‘X’ next to EmailMissionSpecialist.apxc, at the top of the tab.
  2. Select File | Open.
  3. In the Entity Type column, click Classes.Select Your Class from the Open Window
  4. In the Entities column, double-click the class you want to open.

Execute an Apex Class

Now that you’ve created your Apex class, your next step is to execute it using the Developer Console’s handy Execute Anonymous feature. This feature is a useful tool when you want to test your code and its results.

But you have to be careful. All code that you run using this feature affects your org. For instance, if you delete data here, it’s also deleted in your database.

  1. Select Debug | Open Execute Anonymous Window. The Enter Apex Code window opens.
  2. Copy the following code and paste it into the Enter Apex Code window.
    EmailMissionSpecialist em = new EmailMissionSpecialist();
    em.sendMail('Enter your email address', 'Flight Path Change', 
       'Mission Control 123: Your flight path has been changed to avoid collision '
       + 'with asteroid 2014 QO441.');
  3. Replace Enter your email address with your email address.
  4. Click Execute, and then check your email to see whether the message was sent successfully.

When you receive the email, you know that the communication systems are in working order—and that you’re one step closer to being ready to avoid that asteroid.

What Are Lightning Components?

Lightning Components is a framework for developing mobile and desktop apps. You can use it to create responsive user interfaces for Lightning Platform apps. Lightning components also make it easier to build apps that work well across mobile and desktop devices.

Note

As of the Spring ‘19 release (API version 45.0), you can build Lightning components using two programming models: the Lightning Web Components model and the original Aura Components model. Lightning web components and Aura components can coexist and interoperate on a page. This content covers Aura components. To learn more about Lightning Web Components, take the Lightning Web Components Basics module.

You can use the Developer Console to create Aura components. Using the Developer Console, you can create a component bundle. A component bundle acts like a folder in that it contains components and all other related resources, such as style sheets, controllers, and design.

Create an Aura Component

You’re bound to encounter other humans as you evade asteroid 2014 QO441, and we want them to know you’re friendly so they don’t open fire on you. Fortunately, your ship has large display panels on the sides that are running the Salesforce app. (You knew those would come in handy someday!) Let’s create a component that greets any other spaceship nearby.
  1. Select File | New | Lightning Component. The window that pops up prompts you for a name and description.
  2. Name your component meetGreet and click Submit. The window also has options to configure your app’s tab, page, record page, and communities page. You can ignore these options. For now, we’re only focusing on writing basic Aura component code.
  3. Two tabs are created. Click the one labeled meetGreet.cmp. This file contains the opening and closing tags for Aura components.
  4. Between the opening and closing <aura:component> and </aura:component>tags, copy and paste this line.
       <p>Greetings, fellow humans! What’s your status?</p>
    meetGreet Markup
  5. To save the component, select File | Save.

Congratulations: You’ve created your first Aura component using the Developer Console! To build it out completely there are a few more steps, but you can delegate that work to a crew member.

For now, take a sneak peek at the list on the right-hand side of the window. It includes all the resources in a component bundle that you can use to build your component. If you click any item in the right sidebar, a corresponding resource opens. You can write code in the new resource to build the different parts of the component bundle. For instance, you can use the Style resource to add visual elements to your application and the Helper to add business logic.

Lighning Component Bundle
Here’s how you can open a saved Aura component or any of these resources.
  1. Select File | Open Lightning Resources.
  2. Type your component’s name in the search box to find your bundle, or select its folder from the list.
  3. To see the bundle’s resources, click the arrow next to the folder.Open Lightning Resources
  4. Select the resource you want to work on, and then click Open Selected.

Create Visualforce Pages and Components

You’ve learned how to use your console to create Apex code and Aura components. Now it’s time to check out Visualforce.

Visualforce is a web development framework for building sophisticated user interfaces for mobile and desktop apps. These interfaces are hosted on the Lightning Platform. Your user interface can look like the standard Salesforce interface, or you can customize it.

Now you must be wondering, what’s the difference between Visualforce and Lightning components? Visualforce is page-centric: When you save a record, the Visualforce page interacts with the server and reloads the user interface (UI). The Lightning components framework, in contrast, does much of its work on your device (on the client side, in geek speak). If you want to learn more, check out the Lightning Web Components for Visualforce Developers module.

If you want to explore the world of Visualforce, check out the Visualforce Basics module.

But first, let’s start building a Visualforce page using the Developer Console. Get ready to take the controls!

Create a Visualforce Page

You have a Flight Systems Checklist that your Control Engineers update every 2 hours, when they perform their engine and fuel tank safety checks. Let’s create a Visualforce page that they can use to report their findings.

A functional Flight Systems Checklist page needs to interact with objects that store the values entered by the Control Engineers. But, for now, let’s focus on creating the UI. You can have your underlings create those custom objects.

  1. Select File | New | Visualforce Page.
  2. Name your page FlightSystemsChecklist.
  3. In the text editor, copy and paste the following code.
    <apex:page sidebar="false">
    <!--Flight Systems Checklist Visualforce Page-->
       <h1>Checklist</h1>
       <apex:form id="engineReadinessChecklist">
          <apex:pageBlock title="Flight Systems Checklist">
             <!--First Section-->
             <apex:pageBlockSection title="Engines">
                <!--Adding Checkboxes-->
                <apex:inputCheckbox immediate="true"/>Engine 1
                <apex:inputCheckbox immediate="true"/>Engine 2
                <apex:inputCheckbox immediate="true"/>Engine 3
                <apex:inputCheckbox immediate="true"/>Engine 4
                <apex:inputCheckbox immediate="true"/>Engine 5
                <apex:inputCheckbox immediate="true"/>Engine 6
             </apex:pageBlockSection>
             <!--Second Section-->
             <apex:pageBlockSection title="Fuel Tanks">
                <apex:inputCheckbox immediate="true"/>Tank 1
                <apex:inputCheckbox immediate="true"/>Tank 2
                <apex:inputCheckbox immediate="true"/>Tank 3
                <apex:inputCheckbox immediate="true"/>Tank 4
                <apex:inputCheckbox immediate="true"/>Tank 5
                <apex:inputCheckbox immediate="true"/>Tank 6
             </apex:pageBlockSection>
             <apex:pageBlockButtons>
                <!--Adding Save Button-->
                <apex:commandButton value="Save" action="{!save}"/>
             </apex:pageBlockButtons>
          </apex:pageBlock>
       </apex:form>
    </apex:page>
  4. Select File | Save.
  5. In the top left corner, click Preview. Your browser opens a preview of your Visualforce page. The Visualforce markup in your page—form, pageBlock, inputCheckbox, and so on—is rendered in the preview. Preview of Flight Systems Visualforce Page
Let’s see how you can open a saved Visualforce page.
  1. Select File | Open.
  2. Under Entity Type, click Pages.
  3. Under Entities, double-click the page you want to open.

You can create, edit, and customize applications for your org using any or all these methods in the Developer Console. And, so far you’ve stayed out of asteroid 2014 QO441’s path without making any rash decisions that compromise your crew’s safety.

Keep learning for
free!
Sign up for an account to continue.
What’s in it for you?
  • Get personalized recommendations for your career goals
  • Practice your skills with hands-on challenges and quizzes
  • Track and share your progress with employers
  • Connect to mentorship and career opportunities