1    /* 
     2     *  Copyright (c) 2008 Texas Instruments and others.
     3     *  All rights reserved. This program and the accompanying materials
     4     *  are made available under the terms of the Eclipse Public License v1.0
     5     *  which accompanies this distribution, and is available at
     6     *  http://www.eclipse.org/legal/epl-v10.html
     7     * 
     8     *  Contributors:
     9     *      Texas Instruments - initial implementation
    10     * 
    11     * */
    12    //! Generic xdc-script (xs) command 
    13    metaonly interface ICmd {
    14    
    15        //! Usage for this command
    16        config String usage[] = [];
    17    
    18        //! 'xs' shell entry point
    19        final function main(args);
    20    
    21        //! 'xs' script entry point
    22        final function exec(args);
    23    
    24    instance:
    25    
    26        //! Underlying implementation
    27        Any run(Cmdr.Instance cmdr, String args[]);
    28    }
    29    /*
    30     *  @(#) xdc.tools; 1, 0, 0, 0,301; 8-20-2010 17:21:35; /db/ztree/library/trees/xdc/xdc-v48x/src/packages/
    31     */
    32