1    /*
     2     *  Copyright 2009 by Texas Instruments Incorporated.
     3     *
     4     *  All rights reserved. Property of Texas Instruments Incorporated.
     5     *  Restricted rights to use, duplicate or disclose this code are
     6     *  granted through contract.
     7     *
     8     */
     9    
    10    package xdc.tools.platformWizard;
    11    
    12    /*
    13     * @_nodoc
    14     */
    15    metaonly module Main inherits xdc.tools.ICmd {
    16    
    17        override config String usage[] = [
    18            ' -r <repository for platform package>',
    19            ' -x <XML schema file>',
    20                    '<platform package name>'
    21        ];
    22    
    23    instance:
    24            
    25            @CommandOption("r")
    26            config String repositoryPath = null;
    27            
    28            @CommandOption("x")
    29            config String schemaFile = null;
    30            
    31        override Any run(xdc.tools.Cmdr.Instance cmdr, String args[]);
    32    
    33    }
    34    /*
    35     *  @(#) xdc.tools.platformWizard; 1,0,0,25; 6-9-2009 14:23:27; /db/ztree/library/trees/xdctools-c16x/src/
    36     */
    37