About EV calling

package com.example;

import com.google.appinventor.components.annotations.*;
import com.google.appinventor.components.runtime.*;

@DesignerComponent(version = 1,
        description = "My First Extension",
        category = ComponentCategory.EXTENSION,
        nonVisible = true)
@SimpleObject(external = true)
public class MyExtension extends AndroidNonvisibleComponent {

    public MyExtension(ComponentContainer container) {
        super(container.$form());
    }

    @SimpleFunction(description = "Says Hello")
    public String SayHello(String name) {
        return "Hello, " + name;
    }
}

Welcome and congratulations!
Taifun

What exactly does the title mean in this case?