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    
    13    /*!
    14     *  ======== Main ========
    15     *  Graphical interface to repoman tool
    16     *
    17     *  For more information about how to use this tool, see the
    18     *  {@link http://rtsc.eclipse.org/docs-tip/Command_-_xdc.tools.repoman.sg xdc.tools.repoman.sg User's Guide}.
    19     *
    20     *  @see xdc.tools.repoman
    21     */
    22    metaonly module Main inherits xdc.tools.ICmd {
    23    
    24        override config String usage[] = [
    25           '[--packagepath PATH]'
    26        ];
    27        /*!
    28         *  ======== createPartControl ========
    29         *  @_nodoc
    30         */
    31        function createPartControl(parent);
    32    instance:
    33        //! repositories to scan for packages
    34        @CommandOption('packagepath')
    35        config string pathArg = null;
    36    }
    37    /*
    38     *  @(#) xdc.tools.repoman.sg; 1, 0, 0,205; 8-23-2011 09:13:04; /db/ztree/library/trees/xdctools/xdctools-f02x/src/
    39     */
    40