Guest User

Untitled

a guest
Jan 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. /* TODO: currently skipped. */
  2. else if(name.equals("alternatives")){
  3. this.reader.next();
  4. name=this.reader.getLocalName();
  5.  
  6. /* Go to next element and check if it is a start element. */
  7. while(name.equals("alternatives") == false){
  8.  
  9. if(this.reader.next() != START_ELEMENT || this.reader.next() != END_ELEMENT) {
  10. this.reader.next();
  11. }
  12. else if(this.reader.next() == CHARACTERS){
  13. this.getElementString();
  14. }
  15.  
  16. name=this.reader.getLocalName();
  17. }
  18. }
Add Comment
Please, Sign In to add comment