Author: mvw
Date: 2007-12-21 05:46:08-0800
New Revision: 13969
Added:
trunk/src_new/org/argouml/cognitive/ui/InitCognitiveUI.java (contents, props changed)
Modified:
trunk/src_new/org/argouml/application/Main.java
trunk/src_new/org/argouml/ui/DetailsPane.java
Log:
Removed the last dependency from org.argouml.ui on org.argouml.cognitive.ui.
Modified: trunk/src_new/org/argouml/application/Main.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/application/Main.java?view=diff&rev=13969&p1=trunk/src_new/org/argouml/application/Main.java&p2=trunk/src_new/org/argouml/application/Main.java&r1=13968&r2=13969
==============================================================================
--- trunk/src_new/org/argouml/application/Main.java (original)
+++ trunk/src_new/org/argouml/application/Main.java 2007-12-21 05:46:08-0800
@@ -55,6 +55,7 @@
import org.argouml.cognitive.AbstractCognitiveTranslator;
import org.argouml.cognitive.Designer;
import org.argouml.cognitive.checklist.ui.InitCheckListUI;
+import org.argouml.cognitive.ui.InitCognitiveUI;
import org.argouml.cognitive.ui.ToDoPane;
import org.argouml.configuration.Configuration;
import org.argouml.i18n.Translator;
@@ -419,6 +420,7 @@
SubsystemUtility.initSubsystem(new InitNotationJava());
SubsystemUtility.initSubsystem(new InitDiagramAppearanceUI());
SubsystemUtility.initSubsystem(new InitCheckListUI());
+ SubsystemUtility.initSubsystem(new InitCognitiveUI());
}
return pb;
}
Added: trunk/src_new/org/argouml/cognitive/ui/InitCognitiveUI.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/cognitive/ui/InitCognitiveUI.java?view=auto&rev=13969
==============================================================================
--- (empty file)
+++ trunk/src_new/org/argouml/cognitive/ui/InitCognitiveUI.java 2007-12-21 05:46:08-0800
@@ -0,0 +1,60 @@
+// $Id$
+// Copyright (c) 2007 The Regents of the University of California. All
+// Rights Reserved. Permission to use, copy, modify, and distribute this
+// software and its documentation without fee, and without a written
+// agreement is hereby granted, provided that the above copyright notice
+// and this paragraph appear in all copies. This software program and
+// documentation are copyrighted by The Regents of the University of
+// California. The software program and documentation are supplied "AS
+// IS", without any accompanying services from The Regents. The Regents
+// does not warrant that the operation of the program will be
+// uninterrupted or error-free. The end-user understands that the program
+// was developed for research purposes and is advised not to rely
+// exclusively on the program for any reason. IN NO EVENT SHALL THE
+// UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
+// SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS,
+// ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
+// THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF
+// SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY
+// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE
+// PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
+// CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
+// UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
+
+package org.argouml.cognitive.ui;
+
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+
+import org.argouml.application.api.AbstractArgoJPanel;
+import org.argouml.application.api.GUISettingsTabInterface;
+import org.argouml.application.api.InitSubsystem;
+
+/**
+ *
+ * @author Michiel
+ */
+public class InitCognitiveUI implements InitSubsystem {
+
+ public void init() {
+ // Do nothing
+ }
+
+ public List<AbstractArgoJPanel> getDetailsTabs() {
+ List<AbstractArgoJPanel> result =
+ new ArrayList<AbstractArgoJPanel>();
+ result.add(new TabToDo());
+ return result;
+ }
+
+ public List<GUISettingsTabInterface> getProjectSettingsTabs() {
+ return Collections.emptyList();
+ }
+
+ public List<GUISettingsTabInterface> getSettingsTabs() {
+ return Collections.emptyList();
+ }
+
+}
Modified: trunk/src_new/org/argouml/ui/DetailsPane.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/ui/DetailsPane.java?view=diff&rev=13969&p1=trunk/src_new/org/argouml/ui/DetailsPane.java&p2=trunk/src_new/org/argouml/ui/DetailsPane.java&r1=13968&r2=13969
==============================================================================
--- trunk/src_new/org/argouml/ui/DetailsPane.java (original)
+++ trunk/src_new/org/argouml/ui/DetailsPane.java 2007-12-21 05:46:08-0800
@@ -201,7 +201,7 @@
// Special case for backward compatibility
|| "detail".equalsIgnoreCase(direction)) {
tabPanelList.addAll(Arrays.asList(new JPanel[] {
- new org.argouml.cognitive.ui.TabToDo(),
+// new org.argouml.cognitive.ui.TabToDo(),
new TabProps(),
new TabDocumentation(),
new TabStyle(),
@@ -236,6 +236,7 @@
String title = Translator.localize(p.getTitle());
if (p instanceof TabToDoTarget) {
icon = leftArrowIcon;
+ atEnd = false; //overrule the parameter!
} else if (p instanceof TabModelTarget) {
icon = upArrowIcon;
} else if (p instanceof TabFigTarget) {
lmpx.com only provides a reader for public news (NNTP) servers. It is not
affiliated with the servers or forums shown here and is not responsible for
the content of articles, which is written by their respective authors.