~ubuntu-branches/ubuntu/trusty/freeguide/trusty

« back to all changes in this revision

Viewing changes to src/freeguide/plugins/program/freeguide/FreeGuide.java

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Watkins
  • Date: 2008-09-07 15:49:32 UTC
  • mfrom: (1.2.6 upstream) (4.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20080907154932-2jvgv76btq068fe0
Tags: 0.10.9-1
* New upstream release. (Closes: #492789)
* Moved package from contrib to main. (Closes: #492544)
* Added lintian override for 'build-depends-without-arch-dep ant', as ant is
  used in the clean target.

Show diffs side-by-side

added added

removed removed

Lines of Context:
225
225
                log.log( Level.SEVERE, "Error load config", ex );
226
226
            }
227
227
 
 
228
            if( arguments.containsKey( "working_directory" ) )
 
229
            {
 
230
                config.workingDirectory = arguments.getProperty( "working_directory" );
 
231
            }
 
232
            else
 
233
            {
 
234
                runtimeInfo.installDirectory = null;
 
235
 
 
236
            }
 
237
 
228
238
            PluginsManager.loadModules(  );
229
239
 
230
240
            if( PluginsManager.getApplicationModuleInfo(  ) == null )
500
510
     * Class for store main application config information.
501
511
     *
502
512
     * @author $author$
503
 
     * @version $Revision: 1602 $
 
513
     * @version $Revision$
504
514
     */
505
515
    public static class Config
506
516
    {
561
571
     * Class for store runtime information.
562
572
     *
563
573
     * @author $author$
564
 
     * @version $Revision: 1602 $
 
574
     * @version $Revision$
565
575
     */
566
576
    public static class RuntimeInfo
567
577
    {