X-Git-Url: http://jaekl.net/gitweb/?p=frank.git;a=blobdiff_plain;f=report%2Fnet%2Fjaekl%2Fqd%2Fxml%2FMismatchedTagsException.html;fp=report%2Fnet%2Fjaekl%2Fqd%2Fxml%2FMismatchedTagsException.html;h=0000000000000000000000000000000000000000;hp=7a540c24923e698a457763f9c7fc4236cf70744e;hb=c35af9e511e8390a66ca76331c3af43d0f0f7464;hpb=24f097b0fe78fa44f99b9f6f2e51a8e689d86a4a diff --git a/report/net/jaekl/qd/xml/MismatchedTagsException.html b/report/net/jaekl/qd/xml/MismatchedTagsException.html deleted file mode 100644 index 7a540c2..0000000 --- a/report/net/jaekl/qd/xml/MismatchedTagsException.html +++ /dev/null @@ -1,217 +0,0 @@ - - -tests coverage - - - - - - - - - -
-Frames -No Frames -
-

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

-

- - - - - - - - - - - - - - - - - - - - - - - - - -
hit countmethod namemethod modifiersmethod signature
0<init>[public]void <init>(java.lang.String,java.lang.String)
0getActual[public]java.lang.String getActual()
0getExpected[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
- -