org.metawidget.inspector.xml.XmlInspector Maven / Gradle / Ivy
// Metawidget
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is 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 Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
package org.metawidget.inspector.xml;
import static org.metawidget.inspector.InspectionResultConstants.*;
import java.util.Map;
import org.metawidget.inspector.InspectionResultConstants;
import org.metawidget.inspector.iface.InspectorException;
import org.metawidget.inspector.impl.BaseXmlInspector;
import org.metawidget.util.XmlUtils;
import org.w3c.dom.Element;
/**
* Inspects inspection-result-1.0.xsd
-compliant files (such as
* metawidget-metadata.xml
).
*
* XmlInspector is a very simple Inspector: it takes as its input XML in the same format that
* Inspectors usually output. It can be useful for declaring 'ad hoc' UI entities that do not map to
* any Java class, as well as for declaring UI-specific attributes for existing Java classes (ie. if
* you prefer not to use annotations, or if you want to introduce additional 'virtual' properties).
*
* Note when using XmlInspector
you should still try to avoid duplicating UI metadata
* that already exists in other parts of your application. For example, if you are also using
* PropertyTypeInspector
in your CompositeInspector
there is no need to
* duplicate the names and types of properties. Also, if you are using
* PropertyTypeInspector
and XmlInspector
together, please read the
* JavaDoc for restrictAgainstObject
.
*
* @author Richard Kennard
*/
public class XmlInspector
extends BaseXmlInspector {
//
// Constructors
//
/**
* Constructs an XmlInspector.
*
* Note XmlInspector requires a config. It does not have a default constructor, because the
* XmlInspectorConfig must be externally configured using setResourceResolver
to
* support resolving resources from non-standard locations (such as WEB-INF
inspectProperty( Element toInspect ) {
if ( PROPERTY.equals( toInspect.getNodeName() ) ) {
Map attributes = XmlUtils.getAttributesAsMap( toInspect );
// Warn about some common typos
if ( attributes.containsKey( "readonly" ) ) {
throw InspectorException.newException( "Attribute named 'readonly' should be '" + InspectionResultConstants.READ_ONLY + "'" );
}
if ( attributes.containsKey( "dontexpand" ) ) {
throw InspectorException.newException( "Attribute named 'dontexpand' should be '" + InspectionResultConstants.DONT_EXPAND + "'" );
}
// All good
return attributes;
}
return null;
}
@Override
protected Map inspectAction( Element toInspect ) {
if ( ACTION.equals( toInspect.getNodeName() ) ) {
return XmlUtils.getAttributesAsMap( toInspect );
}
return null;
}
}