~ubuntu-branches/ubuntu/utopic/sweethome3d/utopic

« back to all changes in this revision

Viewing changes to src/com/eteks/sweethome3d/plugin/Plugin.java

  • Committer: Package Import Robot
  • Author(s): Gabriele Giacone
  • Date: 2013-03-22 23:35:34 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20130322233534-k9g9mz1vch0dfy4y
Tags: 4.0+dfsg-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 * Subclasses should implement {@link #getActions() getActions} method
31
31
 * to return the actions that will be available to user.
32
32
 * This class should be packed in a JAR file with a family of properties file named 
33
 
 * <code>ApplicationPlugin.properties</code> at its root or in one of its subdirectories. 
34
 
 * This file describes a plug-in with the following keys (all of them are mandatory):
35
 
 * <ul><li>The <code>name</code> key specifies the name of the plug-in.</li>
 
33
 * <code>ApplicationPlugin.properties</code> at its root or in one of its subfolders. 
 
34
 * This file describes a plug-in with the following keys (all of them are mandatory
 
35
 * except <code>id</code>):
 
36
 * <ul><li>The <code>id</code> key gives an optional id to the plug-in, 
 
37
 *     which can be useful to determine if an update for this plug-in is available 
 
38
 *     during libraries updates checking.</li>
 
39
 *     <li>The <code>name</code> key specifies the name of the plug-in.</li>
36
40
 *     <li>The <code>class</code> key specifies the fully qualified class name
37
41
 *     of the plug-in.</li>
38
42
 *     <li>The <code>description</code> key specifies the description of 
76
80
  private HomeController      homeController;
77
81
  private UndoableEditSupport undoableEditSupport;
78
82
 
 
83
 
79
84
  /**
80
85
   * Sets the class loader used to load this plug-in.
81
86
   */