Revision 41620 trunk/org.gvsig.desktop/org.gvsig.desktop.library/org.gvsig.installer/org.gvsig.installer.lib/org.gvsig.installer.lib.api/src/main/java/org/gvsig/installer/lib/api/InstallerManager.java

View differences:

InstallerManager.java
413 413
	public List<File> getLocalAddonRepositories();
414 414

  
415 415
	/**
416
	 * Adds an addon repository path to the manager list.
416
	 * Adds an addon local repository location to the manager list,
417
         * and register the type of addons for this repository.
417 418
	 * 
418 419
	 * @param path
419 420
	 *            of the repository
421
         * @param type
422
         *            of addons in this repository
420 423
	 */
424
	public void addLocalAddonRepository(File path, String type);
425
        
426
        /**
427
         * @deprecated use addLocalAddonRepository(File path, String type)
428
         */
421 429
	public void addLocalAddonRepository(File path);
422 430

  
431
        /**
432
         * Retrieve the default type of addons for the file.
433
         * Use the registry of local addon repositories to identify the
434
         * type for this file.
435
         * 
436
         * @param file
437
         * @return 
438
         */
439
        public String getDefaultLocalRepositoryType(File file);
440
                
423 441
	/**
424 442
	 * Gets a List of all the addon folders. An addon folder is a folder inside
425 443
	 * any addon repository with a package.info file inside. (addons

Also available in: Unified diff