Author: maurelio1234
Date: 2007-06-28 05:18:15-0700
New Revision: 12915
Added:
branches/gsoc2007/maurelio1234/tests/argouml-core-tests/ (props changed)
- copied from r12912, /trunk/tests/
branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/
branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/TestProfileConfiguration1.java
branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/TestProfileConfiguration2.java
branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/TestProfileManagerImpl.java
branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/java/
branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/java/TestProfileJava.java
- copied, changed from r12912, /trunk/tests/org/argouml/uml/TestProfileJava.java
Removed:
branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/TestProfileJava.java
Modified:
branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/moduleloader/GUITestModuleLoader2.java
branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/ui/MockUMLUserInterfaceContainer.java
Log:
Uploading tests for profile
Modified: branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/moduleloader/GUITestModuleLoader2.java
Url: http://argouml.tigris.org/source/browse/argouml/branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/moduleloader/GUITestModuleLoader2.java?view=diff&rev=12915&p1=/trunk/tests/org/argouml/moduleloader/GUITestModuleLoader2.java&p2=branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/moduleloader/GUITestModuleLoader2.java&r1=12912&r2=12915
==============================================================================
--- /trunk/tests/org/argouml/moduleloader/GUITestModuleLoader2.java (original)
+++ branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/moduleloader/GUITestModuleLoader2.java 2007-06-28 05:18:15-0700
@@ -86,7 +86,7 @@
}
public void testGetExtensionLocations() {
- List extensionLocations =
+ List<String> extensionLocations =
ModuleLoader2.getInstance().getExtensionLocations();
assertNotNull(extensionLocations);
for (Iterator iter = extensionLocations.iterator();
Removed: /trunk/tests/org/argouml/uml/TestProfileJava.java
Url: http://argouml.tigris.org/source/browse/argouml//trunk/tests/org/argouml/uml/TestProfileJava.java?view=auto&rev=12912
Added: branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/TestProfileConfiguration1.java
Url: http://argouml.tigris.org/source/browse/argouml/branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/TestProfileConfiguration1.java?view=auto&rev=12915
==============================================================================
--- (empty file)
+++ branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/TestProfileConfiguration1.java 2007-06-28 05:18:15-0700
@@ -0,0 +1,138 @@
+// $Id: eclipse-argo-codetemplates.xml 11347 2006-10-26 22:37:44Z linus $
+// 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.uml.profile;
+
+import java.io.File;
+
+import junit.framework.TestCase;
+
+import org.argouml.kernel.Project;
+import org.argouml.model.InitializeModel;
+import org.argouml.uml.profile.java.JavaFormatingStrategy;
+import org.argouml.uml.profile.java.ProfileJava;
+
+/**
+ * Tests the ProfileConfiguration
+ *
+ * @author Marcos Aurélio
+ */
+public class TestProfileConfiguration1 extends TestCase {
+ /**
+ * The constructor.
+ *
+ * @param name the name of the test.
+ */
+ public TestProfileConfiguration1(String name) {
+ super(name);
+ }
+
+ /*
+ * @see junit.framework.TestCase#setUp()
+ */
+ public void setUp() throws Exception {
+ super.setUp();
+ InitializeModel.initializeDefault();
+ }
+
+ /**
+ * Tests whether the Java profile and formating strategy is set as the
+ * default ones
+ */
+ public void testJavaDefaultStrategyAndModel() {
+ Project p = new Project();
+ ProfileConfiguration pc = new ProfileConfiguration(p);
+
+ assertTrue("Java profile has not been set as the default one!", pc
+ .getDefaultProfile() instanceof ProfileJava);
+ assertTrue("Java formating strategy has not been "
+ + "set as the default one!",
+ pc.getFormatingStrategy() instanceof JavaFormatingStrategy);
+ assertTrue("Java's defaulf profile formating strategy is not being "
+ + "used as the default formating strategy!", pc
+ .getFormatingStrategy() == pc.getDefaultProfile()
+ .getFormatingStrategy());
+ }
+
+ /**
+ * Tests whether a new profile can be successfully added
+ */
+ public void testAddingNewProfile() {
+ Project p = new Project();
+ ProfileConfiguration pc = new ProfileConfiguration(p);
+ Profile pr = new UserDefinedProfile(new File("someprofile"));
+
+ pc.addProfile(pr);
+ assertTrue("Profile was not correctly added to the configuration!", pc
+ .getProfiles().contains(pr));
+ }
+
+ /**
+ * Tests whether a new profile can be successfully removed
+ * from the configuration
+ */
+ public void testRemovingProfile() {
+ Project p = new Project();
+ ProfileConfiguration pc = new ProfileConfiguration(p);
+ Profile pr = new UserDefinedProfile(new File("someprofile"));
+
+ if (!pc.getProfiles().contains(pr)) {
+ pc.addProfile(pr);
+ pc.removeProfile(pr);
+ assertTrue(
+ "Profile was not correctly removed from the configuration!",
+ !pc.getProfiles().contains(pr));
+ }
+ }
+
+ /**
+ * Tests whether the configuration reacts properly when an unknow profile
+ * is being removed. It should not throw any exceptions.
+ */
+ public void testRemovingUnknownProfile() {
+ Project p = new Project();
+ ProfileConfiguration pc = new ProfileConfiguration(p);
+ Profile pr = new UserDefinedProfile(new File("someprofile"));
+
+ if (!pc.getProfiles().contains(pr)) {
+ pc.removeProfile(pr);
+ }
+ }
+ /**
+ * Tests whether the default profile cannot be removed
+ */
+ public void testRemovingDefaultProfile() {
+ Project p = new Project();
+ ProfileConfiguration pc = new ProfileConfiguration(p);
+
+ Profile dp = pc.getDefaultProfile();
+
+ pc.removeProfile(dp);
+ assertTrue("Default profile was removed from the configuration!",
+ !pc.getProfiles().contains(dp));
+ assertTrue("Default profile changed!",
+ pc.getDefaultProfile() == dp);
+ }
+
+}
Added: branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/TestProfileConfiguration2.java
Url: http://argouml.tigris.org/source/browse/argouml/branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/TestProfileConfiguration2.java?view=auto&rev=12915
==============================================================================
--- (empty file)
+++ branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/TestProfileConfiguration2.java 2007-06-28 05:18:15-0700
@@ -0,0 +1,217 @@
+// $Id: eclipse-argo-codetemplates.xml 11347 2006-10-26 22:37:44Z linus $
+// 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.uml.profile;
+
+import java.awt.Image;
+import java.awt.image.BufferedImage;
+import java.util.Iterator;
+
+import javax.swing.ImageIcon;
+
+import junit.framework.TestCase;
+
+import org.argouml.kernel.Project;
+import org.argouml.model.InitializeModel;
+import org.argouml.model.Model;
+
+/**
+ * Tests the handling of the strategies and models provided by the installed
+ * profiles.
+ *
+ * @author Marcos Aurélio
+ */
+public class TestProfileConfiguration2 extends TestCase {
+ /**
+ * The constructor.
+ *
+ * @param name the name of the test.
+ */
+ public TestProfileConfiguration2(String name) {
+ super(name);
+ }
+
+ /*
+ * @see junit.framework.TestCase#setUp()
+ */
+ public void setUp() throws Exception {
+ super.setUp();
+ InitializeModel.initializeDefault();
+ }
+
+ /**
+ * This class simulates a real profile, containing a model and
+ * some strategies
+ *
+ * @author Marcos Aurélio
+ */
+ private class FakeProfile extends Profile {
+ private Object model = null;
+ private FigNodeStrategy figNodeStrategy = null;
+ private FormatingStrategy formatStrategy = null;
+
+ public FakeProfile() {
+ model = Model.getModelManagementFactory().createModel();
+ figNodeStrategy = new FakeFigNodeStrategy();
+ formatStrategy = new FakeFormatingStrategy();
+ }
+
+ public String getDisplayName() {
+ return toString();
+ }
+
+ public FigNodeStrategy getFigureStrategy() {
+ return figNodeStrategy;
+ }
+
+ public FormatingStrategy getFormatingStrategy() {
+ return formatStrategy;
+ }
+
+ public Object getModel() {
+ return model;
+ }
+
+ public FigNodeStrategy getFigNodeStrategy() {
+ return figNodeStrategy;
+ }
+
+ public void setFigNodeStrategy(FigNodeStrategy figNodeStrategy) {
+ this.figNodeStrategy = figNodeStrategy;
+ }
+
+ public FormatingStrategy getFormatStrategy() {
+ return formatStrategy;
+ }
+
+ public void setFormatStrategy(FormatingStrategy formatStrategy) {
+ this.formatStrategy = formatStrategy;
+ }
+
+ }
+
+ /**
+ * This class simulates a FigNodeStrategy
+ *
+ * @author Marcos Aurélio
+ */
+ private class FakeFigNodeStrategy implements FigNodeStrategy {
+
+ public Image getIconForStereotype(Object stereotype) {
+ return null;
+ }
+
+ }
+
+ /**
+ * This class simulates a FormatingStrategy
+ *
+ * @author Marcos Aurélio
+ */
+ private class FakeFormatingStrategy implements FormatingStrategy {
+
+ public String formatCollection(Iterator iter, Object namespace) {
+ return "";
+ }
+
+ public String formatElement(Object element, Object namespace) {
+ return "";
+ }
+
+ }
+
+ /**
+ * Whether a formating strategy can be property activated
+ */
+ public void testActivateFormatingStrategy() {
+ Project p = new Project();
+ ProfileConfiguration pc = new ProfileConfiguration(p);
+
+ Profile pr = new FakeProfile();
+
+ pc.addProfile(pr);
+ pc.activateFormatingStrategy(pr);
+
+ assertTrue("FormatingStrategy was not properly activated!", pc
+ .getFormatingStrategy() == pr.getFormatingStrategy());
+ }
+
+ /**
+ * When a profile is removed its formating strategy should also be removed
+ */
+ public void testActivateFormatingStrategyAndRemoveProfile() {
+ Project p = new Project();
+ ProfileConfiguration pc = new ProfileConfiguration(p);
+
+ Profile pr = new FakeProfile();
+
+ pc.addProfile(pr);
+ pc.activateFormatingStrategy(pr);
+ pc.removeProfile(pr);
+
+ assertTrue("FormatingStrategy was not properly removed " +
+ "when the profile was removed!", pc
+ .getFormatingStrategy() != pr.getFormatingStrategy());
+ }
+
+ /**
+ * The formating strategy should come from a profile that has been
+ * registered and provide one.
+ */
+ public void testActivateInvalidFormatingStrategy() {
+ Project p = new Project();
+ ProfileConfiguration pc = new ProfileConfiguration(p);
+
+ Profile pr1 = new FakeProfile();
+ Profile pr2 = new FakeProfile();
+ Profile pr3 = new FakeProfile();
+
+ ((FakeProfile)pr2).setFormatStrategy(null);
+
+ pc.addProfile(pr1);
+ pc.addProfile(pr2);
+
+ // this should not raise any exception
+ pc.activateFormatingStrategy(null);
+
+ pc.activateFormatingStrategy(pr1);
+ pc.activateFormatingStrategy(pr2);
+ assertTrue(
+ "Activating the formating strategy of a profile that " +
+ "does not provide one should not take any effect!",
+ pc.getFormatingStrategy() == pr1.getFormatingStrategy());
+
+ pc.removeProfile(pr1);
+ assertTrue("FormatingStrategy was not properly removed " +
+ "when the providing profile was removed!",
+ pc.getFormatingStrategy() == null);
+
+ FormatingStrategy before = pc.getFormatingStrategy();
+ pc.activateFormatingStrategy(pr3);
+ assertTrue(
+ "Activating the formating strategy of a profile that " +
+ "is has not been registered should not take any effect!",
+ pc.getFormatingStrategy() == before);
+ }
+}
Added: branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/TestProfileManagerImpl.java
Url: http://argouml.tigris.org/source/browse/argouml/branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/TestProfileManagerImpl.java?view=auto&rev=12915
==============================================================================
--- (empty file)
+++ branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/TestProfileManagerImpl.java 2007-06-28 05:18:15-0700
@@ -0,0 +1,85 @@
+// $Id: eclipse-argo-codetemplates.xml 11347 2006-10-26 22:37:44Z linus $
+// 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.uml.profile;
+
+import java.io.File;
+
+import junit.framework.TestCase;
+
+/**
+ * Tests for the default implementation of the ProfileManager
+ *
+ * @author Marcos Aurélio
+ */
+public class TestProfileManagerImpl extends TestCase {
+ /**
+ * The constructor.
+ *
+ * @param name the name of the test.
+ */
+ public TestProfileManagerImpl(String name) {
+ super(name);
+ }
+
+ /**
+ * Test whether the ProfileManager can register a new profile
+ */
+ public void testRegisterProfile() {
+ Profile profile = new UserDefinedProfile(new File("someprofile"));
+ ProfileManager manager = ProfileManagerImpl.getInstance();
+ manager.registerProfile(profile);
+ assertTrue("Profile was not correctly registered", manager
+ .getRegisteredProfiles().contains(profile));
+ }
+
+ /**
+ * Test whether the ProfileManager can remove a previously registered
+ * profile
+ */
+ public void testUnregisterRegisteredProfile() {
+ Profile profile = new UserDefinedProfile(new File("someprofile"));
+ ProfileManager manager = ProfileManagerImpl.getInstance();
+
+ if (!manager.getRegisteredProfiles().contains(profile)) {
+ manager.registerProfile(profile);
+ manager.removeProfile(profile);
+ assertTrue("Profile was not correctly unregistered", !manager
+ .getRegisteredProfiles().contains(profile));
+ }
+ }
+
+ /**
+ * Test whether the ProfileManager can handle a non proviously registered
+ * profile being removed. In this case it should not raise any exception.
+ */
+ public void testUnregisterUnknownProfile() {
+ Profile profile = new UserDefinedProfile(new File("someprofile"));
+ ProfileManager manager = ProfileManagerImpl.getInstance();
+
+ if (!manager.getRegisteredProfiles().contains(profile)) {
+ manager.removeProfile(profile);
+ }
+ }
+}
Copied: branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/java/TestProfileJava.java (from r12912, /trunk/tests/org/argouml/uml/TestProfileJava.java)
Url: http://argouml.tigris.org/source/browse/argouml/branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/java/TestProfileJava.java?view=diff&rev=12915&p1=/trunk/tests/org/argouml/uml/TestProfileJava.java&p2=branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/java/TestProfileJava.java&r1=12912&r2=12915
==============================================================================
--- /trunk/tests/org/argouml/uml/TestProfileJava.java (original)
+++ branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/profile/java/TestProfileJava.java 2007-06-28 05:18:15-0700
@@ -22,14 +22,14 @@
// CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
// UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-package org.argouml.uml;
+package org.argouml.uml.profile.java;
import java.util.Collection;
-import org.argouml.model.Model;
-
import junit.framework.TestCase;
+
import org.argouml.model.InitializeModel;
+import org.argouml.model.Model;
/**
*
@@ -57,18 +57,13 @@
}
/**
- * Test whether we can load default model (profile). ProfileJava will throw
- * an exception for an invalid profile model, but just create and return an
- * empty model if the file for the profile doesn't exist. Check
- * for both failure modes.
- *
- * @throws ProfileException
- * exception thrown by ProfileJava for invalid profile file.
+ * Test whether we can load default model (profile). ProfileJava will just
+ * create and return an empty model if the file for the profile doesn't
+ * exist.
*/
- public void testLoadProfileModel() throws ProfileException {
+ public void testLoadProfileModel() {
ProfileJava profile = new ProfileJava();
- Object model = profile.loadProfileModel();
- assertNotNull("Can't load profile model", model);
+ Object model = profile.getModel();
Collection stereos = Model.getModelManagementHelper()
.getAllModelElementsOfKind(model,
Model.getMetaTypes().getStereotype());
Modified: branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/ui/MockUMLUserInterfaceContainer.java
Url: http://argouml.tigris.org/source/browse/argouml/branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/ui/MockUMLUserInterfaceContainer.java?view=diff&rev=12915&p1=/trunk/tests/org/argouml/uml/ui/MockUMLUserInterfaceContainer.java&p2=branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/ui/MockUMLUserInterfaceContainer.java&r1=12912&r2=12915
==============================================================================
--- /trunk/tests/org/argouml/uml/ui/MockUMLUserInterfaceContainer.java (original)
+++ branches/gsoc2007/maurelio1234/tests/argouml-core-tests/org/argouml/uml/ui/MockUMLUserInterfaceContainer.java 2007-06-28 05:18:15-0700
@@ -26,7 +26,7 @@
import java.util.Iterator;
-import org.argouml.uml.Profile;
+import org.argouml.uml.profile.ProfileConfiguration;
/**
* @since Oct 12, 2002
@@ -61,7 +61,7 @@
/**
* @see org.argouml.uml.ui.UMLUserInterfaceContainer#getProfile()
*/
- public Profile getProfile() {
+ public ProfileConfiguration getProfile() {
return null;
}
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.