|
|||||||||||||||||||
| This license of Clover is provided to support the development of JBind only. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover. | |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| InstanceTestInfo.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 1 |
/* |
|
| 2 |
* JBind |
|
| 3 |
* |
|
| 4 |
* Copyright (c) by Stefan Wachter. All rights reserved. |
|
| 5 |
* |
|
| 6 |
* Usage, modification, and redistribution is subject to license terms that are |
|
| 7 |
* available at 'http://www.jbind.org'. The JBind license is like the |
|
| 8 |
* 'Apache Software License V 1.1'. |
|
| 9 |
*/ |
|
| 10 |
package org.jbind.xml.test; |
|
| 11 |
|
|
| 12 |
|
|
| 13 |
public class InstanceTestInfo extends TestInfo {
|
|
| 14 |
|
|
| 15 |
public DescriptionInfo descriptionInfo = null; |
|
| 16 |
public String name = null; |
|
| 17 |
public String fileName = null; |
|
| 18 |
public String className = null; |
|
| 19 |
|
|
| 20 | 34 |
public InstanceTestInfo(DescriptionInfo aDescriptionInfo, String aName, String aFileName, String aClassName) {
|
| 21 | 34 |
descriptionInfo = aDescriptionInfo; |
| 22 | 34 |
name = aName; |
| 23 | 34 |
fileName = aFileName; |
| 24 | 34 |
className = aClassName; |
| 25 |
} |
|
| 26 |
|
|
| 27 |
} |
|
| 28 |
|
|
||||||||||