Author: tfmorris Date: 2008-05-01 15:45:49-0700 New Revision: 14582 Modified: trunk/src/argouml-app/src/org/argouml/uml/diagram/DiagramFactory.java
Log: Comments only Modified: trunk/src/argouml-app/src/org/argouml/uml/diagram/DiagramFactory.java Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/diagram/DiagramFactory.java?view=diff&rev=14582&p1=trunk/src/argouml-app/src/org/argouml/uml/diagram/DiagramFactory.java&p2=trunk/src/argouml-app/src/org/argouml/uml/diagram/DiagramFactory.java&r1=14581&r2=14582 ============================================================================== --- trunk/src/argouml-app/src/org/argouml/uml/diagram/DiagramFactory.java (original) +++ trunk/src/argouml-app/src/org/argouml/uml/diagram/DiagramFactory.java 2008-05-01 15:45:49-0700 @@ -51,6 +51,7 @@ /** * Provide a factory method to create different UML diagrams. +* * @author Bob Tarling */ public final class DiagramFactory { @@ -76,9 +77,6 @@ public enum DiagramType { Class, UseCase, State, Deployment, Collaboration, Activity, Sequence } - - - private List<ArgoDiagram> diagrams = new ArrayList<ArgoDiagram>(); @@ -105,6 +103,9 @@ * @return the list of diagrams */ public List<ArgoDiagram> getDiagram() { + // TODO: This list is currently unused in ArgoUML. Since it's session + // wide, it's not clear what value it has since we'll usually want + // diagrams per project. - tfm return diagrams; } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
