1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-02 00:20:49 +00:00
plantuml/src/net/sourceforge/plantuml/activitydiagram2/ConditionalContext2.java
2011-01-29 16:09:35 +01:00

115 lines
3.2 KiB
Java

/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009, Arnaud Roques
*
* Project Info: http://plantuml.sourceforge.net
*
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PlantUML distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* Original Author: Arnaud Roques
*
* Revision $Revision: 3828 $
*
*/
package net.sourceforge.plantuml.activitydiagram2;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.LinkedHashSet;
import net.sourceforge.plantuml.Direction;
import net.sourceforge.plantuml.cucadiagram.EntityType;
import net.sourceforge.plantuml.cucadiagram.IEntity;
public class ConditionalContext2 {
private final Collection<IEntity> pendings = new LinkedHashSet<IEntity>();
private final IEntity branch;
private final Direction direction;
private final ConditionalContext2 parent;
private final String when;
public ConditionalContext2(ConditionalContext2 parent, IEntity branch, Direction direction, String when) {
if (branch.getType() != EntityType.BRANCH) {
throw new IllegalArgumentException();
}
this.branch = branch;
this.direction = direction;
this.parent = parent;
this.when = when;
this.pendings.add(branch);
}
public Direction getDirection() {
return direction;
}
public final ConditionalContext2 getParent() {
return parent;
}
public final Collection<IEntity> getPendings() {
return Collections.unmodifiableCollection(pendings);
}
public final IEntity getBranch() {
return branch;
}
public void clearPendingsButFirst() {
System.err.println("ConditionalContext2::clearPendingsButFirst");
this.pendings.clear();
pendings.add(branch);
}
private boolean hasElse = false;
public void executeElse(Collection<IEntity> pendingsToAdd) {
if (this.hasElse) {
throw new IllegalStateException();
}
this.hasElse = true;
System.err.println("pend=" + pendings);
if (pendings.size() == 0) {
throw new IllegalStateException();
}
final Iterator<IEntity> it = pendings.iterator();
final IEntity toRemove = it.next();
if (toRemove.getType() != EntityType.BRANCH) {
throw new IllegalStateException();
}
it.remove();
this.pendings.addAll(pendingsToAdd);
}
public boolean isHasElse() {
return hasElse;
}
public final String getWhen() {
return when;
}
}