📄 robustmapvisitor.java
字号:
package org.jutil.java.collections;import java.util.Map;import java.util.Iterator;import java.util.ConcurrentModificationException;/** * <p>A robust visitor of maps. The code in visit is performed for each element * pair in the visited map.</p> * * <center> * <img src="doc-files/RobustMapVisitor.png"/> * </center> * * <p>In addition to the functionality of MapVisitor, RobustMapVisitor allows the * <code><a href="RobustMapVisitor.html#visit(java.util.Map)">visit</a></code> method to throw an exception. It also has support for undoing the changes * done before the exception occurred.</p> * <p>See <code><a href="RobustVisitor.html">RobustVisitor</a> for more * information.</p> * * @path $Source: /cvsroot/org-jutil/jutil.org/src/org/jutil/java/collections/RobustMapVisitor.java,v $ * @version $Revision: 1.9 $ * @date $Date: 2002/07/20 19:11:30 $ * @state $State: Exp $ * @author Marko van Dooren * @release $Name: $ */public abstract class RobustMapVisitor implements MapOperator { /* The revision of this class */ public final static String CVS_REVISION ="$Revision: 1.9 $"; /** * The code to be applied to all element pairs of a map. * * @param key * The key of the element pair the code should be applied to. * @param element * The value of the element pair the code should be applied to. */ /*@ @ public behavior @ @ pre isValidPair(key, value); @ @ post (* returns Data which enables to undo what visit has done @ in unvisit. () @ @ signals (Exception) (* Something went wrong while visiting the elements. *); @*/ public abstract Object visit(Object key, Object value) throws Exception; /** * This method will be called when the visit method has raised an * exception for some key,value pair which was visited after <key>,<value>. * The implementation should undo whatever visit did on the <key>,<value> pair. * For that, <unvisitData> can be used. */ /*@ @ public behavior @ @ pre isValidPair(key, value); @ // unvisitData is the data returned by the visit method. @ pre unvisitData == visit(key,value); @ @ post (* the changes on <key>,<value> done by visit are undone *); @*/ public abstract void unvisit(Object key, Object value, Object unvisitData); //MvDMvDMvD visit is a mutator, so we can't use it in the specs. /** * <p>Perform the visitation defined in <code>public void visit(Object)</code> * on <map>. The contents of <map> is not changed.</p> * <p>The collection is returned, so * that further operations can be applied to it inline.</p> * * @param map * The collection to perform this visitation on. This can be null. */ /*@ @ public behavior @ @ pre (\forall Map.Entry entry; map.entrySet().contains(entry); @ isValidPair(entry.getKey(), entry.getValue())); @ @ // The changes are applied to the given set and it is returned afterwards. @ post \result == map; @ post (* <code>public void visit(Object)</code> is called for all elements of @ <map>. @ | for all k, for all v: (map.containsKey(k) and (map.get(k) = v)) @ ==> visit(k, v) *); @ @ signals (ConcurrentModificationException) (* The collection was modified while visiting the map. *); @ signals (Exception) (* Something has gone wrong while visiting the map. *); @*/ public final Map applyTo(Map map) throws Exception, ConcurrentModificationException { if (map != null) { new RobustVisitor() { public Object visit(Object element) throws Exception{ Map.Entry entry = (Map.Entry)element; return RobustMapVisitor.this.visit(entry.getKey(), entry.getValue()); } public void unvisit(Object element, Object undoData) { Map.Entry entry = (Map.Entry)element; RobustMapVisitor.this.unvisit(entry.getKey(), entry.getValue(),undoData); } }.applyTo(map.entrySet()); } return map; } }/*<copyright>Copyright (C) 1997-2001. This software is copyrighted by the people and entities mentioned after the "@author" tags above, on behalf of the JUTIL.ORG Project. The copyright is dated by the dates after the "@date" tags above. All rights reserved.This software is published under the terms of the JUTIL.ORG SoftwareLicense version 1.1 or later, a copy of which has been included withthis distribution in the LICENSE file, which can also be found athttp://org-jutil.sourceforge.net/LICENSE. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the JUTIL.ORG Software License for more details.For more information, please see http://org-jutil.sourceforge.net/</copyright>*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -