* @param qName
* @param attrs
*/
protected void handleTextInput(String uri, String name, String qName, Attributes attrs) throws RssParseException{
if(inChannel){
RssChannelTextInput textInput = new RssChannelTextInput();
String resource = getAttributeUnqualified(name, "resource", "rdf", attrs);
textInputMappings.put(resource, textInput);
unmappedTextInputs.addElement(resource);
currentChannel.setChannelTextInput(textInput);
}