org.metawidget.gwt.client.ui.GwtPipeline Maven / Gradle / Ivy
// Metawidget (licensed under LGPL)
//
// 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.gwt.client.ui;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import org.metawidget.pipeline.base.BasePipeline;
import org.metawidget.widgetprocessor.iface.WidgetProcessor;
import com.google.gwt.xml.client.Element;
import com.google.gwt.xml.client.NamedNodeMap;
import com.google.gwt.xml.client.Node;
import com.google.gwt.xml.client.XMLParser;
/**
* Pipeline for platforms that use com.google.gwt.xml.client
.
*
* @author Richard Kennard
*/
public abstract class GwtPipeline
extends BasePipeline {
//
// Public methods
//
/**
* Returns the first WidgetProcessor in this pipeline's list of WidgetProcessors (ie. as added
* by addWidgetProcessor
) that equals the given class. Note this implementation
* does not use isAssignableFrom
, because GWT does not support it.
*
* @param widgetProcessorClass
* the class to find. Returns null
if no such WidgetProcessor
*/
@SuppressWarnings( "unchecked" )
public T getWidgetProcessor( Class widgetProcessorClass ) {
if ( getWidgetProcessors() == null ) {
return null;
}
for ( WidgetProcessor widgetProcessor : getWidgetProcessors() ) {
if ( widgetProcessorClass.equals( widgetProcessor.getClass() ) ) {
return (T) widgetProcessor;
}
}
return null;
}
//
// Protected methods
//
@Override
protected Element stringToElement( String xml ) {
return XMLParser.parse( xml ).getDocumentElement();
}
@Override
protected String elementToString( Element element ) {
return element.toString();
}
@Override
protected Element getFirstChildElement( Element parent ) {
Node node = parent.getFirstChild();
while( node != null && !( node instanceof Element )) {
node = node.getNextSibling();
}
return (Element) node;
}
@Override
protected Element getNextSiblingElement( Element element ) {
Node node = element.getNextSibling();
while( node != null && !( node instanceof Element )) {
node = node.getNextSibling();
}
return (Element) node;
}
@Override
protected String getElementName( Element element ) {
return element.getNodeName();
}
@Override
protected Map getAttributesAsMap( Element element ) {
NamedNodeMap nodes = element.getAttributes();
int length = nodes.getLength();
if ( length == 0 ) {
@SuppressWarnings( { "cast", "unchecked" } )
Map empty = (Map) Collections.EMPTY_MAP;
return empty;
}
Map attributes = new HashMap( length );
for ( int loop = 0; loop < length; loop++ ) {
Node node = nodes.item( loop );
attributes.put( node.getNodeName(), node.getNodeValue() );
}
return attributes;
}
}