metaonly module xdc.tools.repoman.sg.Main

Command implementation

For more information about how to use this tool, see the xdc.tools.repoman.sg User's Guide. [ more ... ]
Configuration settings sourced in xdc/tools/repoman/sg/Main.xdc
var Main = xdc.useModule('xdc.tools.repoman.sg.Main');
module-wide config parameters
        '[--packagepath PATH]'
    ];
module-wide functions
    Main.exec// xs script entry point(Any args) returns Any
    Main.main// xs shell entry point(Any args) returns Any
per-instance config parameters
    var params = new Main.Params// Instance config-params object;
        params.pathArg// repositories to scan for packages = String null;
per-instance functions
    inst.run// Underlying implementation(Cmdr.Instance cmdr, String[] args) returns Any
 
DETAILS
For more information about how to use this tool, see the xdc.tools.repoman.sg User's Guide.
SEE
 
config Main.usage  // module-wide

Usage for this command

Configuration settings
Main.usage = String[] [
    '[--packagepath PATH]'
];
 
 
Main.exec()  // module-wide

xs script entry point

Configuration settings
Main.exec(Any args) returns Any
 
 
Main.main()  // module-wide

xs shell entry point

Configuration settings
Main.main(Any args) returns Any
 
Instance Config Parameters

Configuration settings
var params = new Main.Params;
// Instance config-params object
    params.pathArg = String null;
    // repositories to scan for packages
 
config Main.pathArg  // instance

repositories to scan for packages

Configuration settings
var params = new Main.Params;
  ...
params.pathArg = String null;
 
 
Main.run()  // instance

Underlying implementation

Configuration settings
inst.run(Cmdr.Instance cmdr, String[] args) returns Any
 
generated on Wed, 13 Mar 2013 22:40:57 GMT