summaryrefslogtreecommitdiffstats
path: root/examples/tutorial/packages/com.vendor.product/meta/installscript.qs
blob: e857dae4d465de4f927798623c25c63dd64ac3b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function Component()
{
    // constructor
}

Component.prototype.isDefault = function()
{
    // select the component by default
    return true;
}

Component.prototype.createOperations = function()
{
    try {
        // call the base create operations function
        component.createOperations();
    } catch (e) {
        print(e);
    }
}