MCPcopy Create free account
hub / github.com/BombusMod/BombusMod / pushOutPlainText

Method pushOutPlainText

src/main/java/xml/XMLParser.java:253–260  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

251 }
252
253 public void pushOutPlainText() throws XMLException, UnsupportedEncodingException {
254 if (state==PLAIN_TEXT) {
255 if (sbuf.length()>0)
256 eventListener.plainTextEncountered( parsePlainText(sbuf) );
257
258 sbuf=new StringBuffer();
259 }
260 }
261
262 public static String extractAttribute(String attributeName, Vector attributes) {
263 if (attributes==null) return null;

Callers

nothing calls this directly

Calls 2

parsePlainTextMethod · 0.95
plainTextEncounteredMethod · 0.65

Tested by

no test coverage detected