001/*-------------------------------------------------------------------------+ 002| | 003| Copyright 2005-2011 The ConQAT Project | 004| | 005| Licensed under the Apache License, Version 2.0 (the "License"); | 006| you may not use this file except in compliance with the License. | 007| You may obtain a copy of the License at | 008| | 009| http://www.apache.org/licenses/LICENSE-2.0 | 010| | 011| Unless required by applicable law or agreed to in writing, software | 012| distributed under the License is distributed on an "AS IS" BASIS, | 013| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 014| See the License for the specific language governing permissions and | 015| limitations under the License. | 016+-------------------------------------------------------------------------*/ 017package org.conqat.lib.commons.xml; 018 019/** 020 * Interface for resolution of element and attribute names. 021 * 022 * @author deissenb 023 */ 024public interface IXMLResolver<E extends Enum<E>, A extends Enum<A>> { 025 /** 026 * Returns for an attribute the name which should be used in the XML file. 027 */ 028 public String resolveAttributeName(A attribute); 029 030 /** Returns for an element the name which should be used in the XML file. */ 031 public abstract String resolveElementName(E element); 032 033 /** Returns the class of the attribute enumeration. */ 034 public abstract Class<A> getAttributeClass(); 035}