Frames No Frames

  %method %block %branch %line
net.jaekl.qd.xml.MismatchedTagsException
0%(0/3)
0%(0/3)
-%
0%(0/6)

hit count method name method modifiers method signature
0 <init> [public] void <init>(java.lang.String,java.lang.String)
0 getActual [public] java.lang.String getActual()
0 getExpected [public] java.lang.String getExpected()

 1  
 // Copyright (C) 2004, 2014 Christian Jaekl
 2  
 
 3  
 package net.jaekl.qd.xml;
 4  
 
 5  
 
 6  
 public class MismatchedTagsException extends XmlParseException
 7  
 {
 8  
 	private static final long serialVersionUID = 1L;
 9  
 
 10  
 	String m_expected;
 11  
 	String m_actual;
 12  
 
 13  
 	public MismatchedTagsException(String expected, String actual) {
 14  Block: 0/1 
 		super();
 15  
 		m_expected = expected;
 16  
 		m_actual = actual;
 17  
 	}
 18  
 
 19  Block: 0/1 
 	public String getExpected() { return m_expected; }
 20  Block: 0/1 
 	public String getActual() { return m_actual; }
 21  
 }

Report generated 11/12/14 11:31 PM