📄 checkexclusiveattributes.java
字号:
/* * $Id:CheckExclusiveAttributes.java 8321 2007-09-10 19:22:52Z acooke $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.config.spring.parsers.processors;import org.mule.config.spring.parsers.PreProcessor;import org.mule.config.spring.parsers.assembly.configuration.PropertyConfiguration;import org.mule.config.spring.util.SpringXMLUtils;import java.util.HashMap;import java.util.Iterator;import java.util.LinkedList;import java.util.List;import java.util.Map;import org.w3c.dom.Attr;import org.w3c.dom.Element;import org.w3c.dom.NamedNodeMap;/** * Attributes from two different sets cannot appear together */public class CheckExclusiveAttributes implements PreProcessor{ public static final int NONE = -1; private Map knownAttributes = new HashMap(); public CheckExclusiveAttributes(String[][] attributeSets) { for (int set = 0; set < attributeSets.length; set++) { String[] attributes = attributeSets[set]; for (int attribute = 0; attribute < attributes.length; attribute++) { knownAttributes.put(attributes[attribute], new Integer(set)); } } } public void preProcess(PropertyConfiguration config, Element element) { List foundAttributes = new LinkedList(); int foundSetIndex = NONE; NamedNodeMap attributes = element.getAttributes(); for (int i = 0; i < attributes.getLength(); i++) { String alias = SpringXMLUtils.attributeName((Attr) attributes.item(i)); // don't translate to alias because the error message is in terms of the attributes // the user enters - we don't want to expose the details of translations// String name = null == config ? alias : config.translateName(alias); if (knownAttributes.containsKey(alias)) { int index = ((Integer) knownAttributes.get(alias)).intValue(); if (foundSetIndex != NONE && foundSetIndex != index) { StringBuffer message = new StringBuffer("The attribute '"); message.append(alias); message.append("' cannot appear with the attribute"); if (foundAttributes.size() > 1) { message.append("s"); } Iterator found = foundAttributes.iterator(); while (found.hasNext()) { message.append(" '"); message.append(found.next()); message.append("'"); } message.append(" in element "); message.append(SpringXMLUtils.elementToString(element)); message.append("."); throw new CheckExclusiveAttributesException(message.toString()); } else { foundSetIndex = index; foundAttributes.add(alias); } } } } public static class CheckExclusiveAttributesException extends IllegalStateException { private CheckExclusiveAttributesException(String message) { super(message); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -