1 2 3 4 5 6 7 8 9 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 39
40