svn commit: r13968 - trunk/src_new/org/argouml/application/api/InitSubsystem.java
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: mvw
Date: 2007-12-21 05:43:25-0800
New Revision: 13968
Modified:
trunk/src_new/org/argouml/application/api/InitSubsystem.java
Log:
Clarified the order in which things are happening.
Modified: trunk/src_new/org/argouml/application/api/InitSubsystem.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/application/api/InitSubsystem.java?view=diff&rev=13968&p1=trunk/src_new/org/argouml/application/api/InitSubsystem.java&p2=trunk/src_new/org/argouml/application/api/InitSubsystem.java&r1=13967&r2=13968
==============================================================================
--- trunk/src_new/org/argouml/application/api/InitSubsystem.java (original)
+++ trunk/src_new/org/argouml/application/api/InitSubsystem.java 2007-12-21 05:43:25-0800
@@ -40,6 +40,13 @@
public interface InitSubsystem {
/**
+ * This is called at initialisation time,
+ * before the other operations in this interface are called.
+ * Use it at will.
+ */
+ public void init();
+
+ /**
* @return an ordered list of tab panels
* to be added to the settings dialog
*/
@@ -52,11 +59,6 @@
public List<GUISettingsTabInterface> getProjectSettingsTabs();
/**
- * This is called at initialisation time - use it at will.
- */
- public void init();
-
- /**
* @return an ordered list of Tabs
* to be added to the DetailsPanel
*/