Java Code Examples for org.xmlpull.v1.XmlPullParser#isWhitespace()

The following examples show how to use org.xmlpull.v1.XmlPullParser#isWhitespace() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: XmlParserBase.java    From org.hl7.fhir.core with Apache License 2.0 5 votes vote down vote up
protected int nextNoWhitespace(XmlPullParser xpp) throws XmlPullParserException, IOException {
	int eventType = xpp.getEventType();
	while ((eventType == XmlPullParser.TEXT && xpp.isWhitespace()) || (eventType == XmlPullParser.COMMENT) 
			|| (eventType == XmlPullParser.CDSECT) || (eventType == XmlPullParser.IGNORABLE_WHITESPACE)
			|| (eventType == XmlPullParser.PROCESSING_INSTRUCTION) || (eventType == XmlPullParser.DOCDECL)) {
		if (eventType == XmlPullParser.COMMENT) {
			comments.add(xpp.getText());
		} else if (eventType == XmlPullParser.DOCDECL) {
      throw new XmlPullParserException("DTD declarations are not allowed"); 
     }  
		eventType = next(xpp);
	}
	return eventType;
}
 
Example 2
Source File: XmlParserBase.java    From org.hl7.fhir.core with Apache License 2.0 5 votes vote down vote up
protected int nextNoWhitespace(XmlPullParser xpp) throws XmlPullParserException, IOException {
	int eventType = xpp.getEventType();
	while ((eventType == XmlPullParser.TEXT && xpp.isWhitespace()) || (eventType == XmlPullParser.COMMENT) 
			|| (eventType == XmlPullParser.CDSECT) || (eventType == XmlPullParser.IGNORABLE_WHITESPACE)
			|| (eventType == XmlPullParser.PROCESSING_INSTRUCTION) || (eventType == XmlPullParser.DOCDECL)) {
		if (eventType == XmlPullParser.COMMENT) {
			comments.add(xpp.getText());
		} else if (eventType == XmlPullParser.DOCDECL) {
      throw new XmlPullParserException("DTD declarations are not allowed"); 
     }  
		eventType = next(xpp);
	}
	return eventType;
}
 
Example 3
Source File: XmlParserBase.java    From org.hl7.fhir.core with Apache License 2.0 5 votes vote down vote up
protected int nextNoWhitespace(XmlPullParser xpp) throws XmlPullParserException, IOException {
	int eventType = xpp.getEventType();
	while ((eventType == XmlPullParser.TEXT && xpp.isWhitespace()) || (eventType == XmlPullParser.COMMENT) 
			|| (eventType == XmlPullParser.CDSECT) || (eventType == XmlPullParser.IGNORABLE_WHITESPACE)
			|| (eventType == XmlPullParser.PROCESSING_INSTRUCTION) || (eventType == XmlPullParser.DOCDECL)) {
		if (eventType == XmlPullParser.COMMENT) {
			comments.add(xpp.getText());
		}
		eventType = next(xpp);
	}
	return eventType;
}
 
Example 4
Source File: XmlParserBase.java    From org.hl7.fhir.core with Apache License 2.0 5 votes vote down vote up
protected int nextNoWhitespace(XmlPullParser xpp) throws XmlPullParserException, IOException {
	int eventType = xpp.getEventType();
	while ((eventType == XmlPullParser.TEXT && xpp.isWhitespace()) || (eventType == XmlPullParser.COMMENT) 
			|| (eventType == XmlPullParser.CDSECT) || (eventType == XmlPullParser.IGNORABLE_WHITESPACE)
			|| (eventType == XmlPullParser.PROCESSING_INSTRUCTION) || (eventType == XmlPullParser.DOCDECL)) {
		if (eventType == XmlPullParser.COMMENT) {
			comments.add(xpp.getText());
		} else if (eventType == XmlPullParser.DOCDECL) {
      throw new XmlPullParserException("DTD declarations are not allowed"); 
     }  
		eventType = next(xpp);
	}
	return eventType;
}
 
Example 5
Source File: XmlParserBase.java    From org.hl7.fhir.core with Apache License 2.0 5 votes vote down vote up
protected int nextNoWhitespace(XmlPullParser xpp) throws XmlPullParserException, IOException {
	int eventType = xpp.getEventType();
	while ((eventType == XmlPullParser.TEXT && xpp.isWhitespace()) || (eventType == XmlPullParser.COMMENT) 
			|| (eventType == XmlPullParser.CDSECT) || (eventType == XmlPullParser.IGNORABLE_WHITESPACE)
			|| (eventType == XmlPullParser.PROCESSING_INSTRUCTION) || (eventType == XmlPullParser.DOCDECL)) {
		if (eventType == XmlPullParser.COMMENT) {
			comments.add(xpp.getText());
		} else if (eventType == XmlPullParser.DOCDECL) {
      throw new XmlPullParserException("DTD declarations are not allowed"); 
		}
		eventType = next(xpp);
	}
	return eventType;
}
 
Example 6
Source File: ToolsHelper.java    From org.hl7.fhir.core with Apache License 2.0 4 votes vote down vote up
protected int nextNoWhitespace(XmlPullParser xpp) throws XmlPullParserException, IOException {
	int eventType = xpp.getEventType();
	while (eventType == XmlPullParser.TEXT && xpp.isWhitespace())
		eventType = xpp.next();
	return eventType;
}
 
Example 7
Source File: ToolsHelper.java    From org.hl7.fhir.core with Apache License 2.0 4 votes vote down vote up
protected int nextNoWhitespace(XmlPullParser xpp) throws XmlPullParserException, IOException {
	int eventType = xpp.getEventType();
	while (eventType == XmlPullParser.TEXT && xpp.isWhitespace())
		eventType = xpp.next();
	return eventType;
}
 
Example 8
Source File: ToolsHelper.java    From org.hl7.fhir.core with Apache License 2.0 4 votes vote down vote up
protected int nextNoWhitespace(XmlPullParser xpp) throws XmlPullParserException, IOException {
  int eventType = xpp.getEventType();
  while (eventType == XmlPullParser.TEXT && xpp.isWhitespace())
    eventType = xpp.next();
  return eventType;
}
 
Example 9
Source File: ToolsHelper.java    From org.hl7.fhir.core with Apache License 2.0 4 votes vote down vote up
protected int nextNoWhitespace(XmlPullParser xpp) throws XmlPullParserException, IOException {
	int eventType = xpp.getEventType();
	while (eventType == XmlPullParser.TEXT && xpp.isWhitespace())
		eventType = xpp.next();
	return eventType;
}
 
Example 10
Source File: ToolsHelper.java    From org.hl7.fhir.core with Apache License 2.0 4 votes vote down vote up
protected int nextNoWhitespace(XmlPullParser xpp) throws XmlPullParserException, IOException {
	int eventType = xpp.getEventType();
	while (eventType == XmlPullParser.TEXT && xpp.isWhitespace())
		eventType = xpp.next();
	return eventType;
}