Package com.salesforce.ide.core.model

Examples of com.salesforce.ide.core.model.ApexTrigger


    }

    @Override
    public void loadAdditionalComponentAttributes() throws FactoryException, JAXBException {
        // load code body and add to component list
        ApexTrigger apexTrigger = (ApexTrigger) component;
        apexTrigger.setObjectName(getObjectName());
        apexTrigger.setOperations(new ArrayList<String>(operations));
        apexTrigger.intiNewBody(apexTrigger.getNewBodyFromTemplateString());
        componentList.add(apexTrigger);

        // prepare metadata body and component
        Component metadataComponent = componentFactory.getCompositeComponentFromComponent(component);
        saveMetadata(metadataComponent);
View Full Code Here


    }

    @Override
    public void createComposite(Composite parent) {
        // load trigger operation options
        ApexTrigger apexTrigger = (ApexTrigger) componentWizard.getComponentWizardModel().getComponent();

        componentWizardComposite =
                new ApexTriggerWizardComposite(parent, SWT.NULL, apexTrigger.getDisplayName(), apexTrigger
                        .getSupportedApiVersions(), apexTrigger.getOperationOptions());
        componentWizardComposite.setComponentWizardPage(this);
    }
View Full Code Here

TOP

Related Classes of com.salesforce.ide.core.model.ApexTrigger

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.