|
|||||||||||||||||||
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 | |||||||||||||||
AnyTypeData.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.instance.data; |
|
11 |
|
|
12 |
import org.jbind.xml.core.data.IAnyTypeData; |
|
13 |
import org.jbind.xml.core.data.IDataVisitor; |
|
14 |
|
|
15 |
public class AnyTypeData extends AbstractData implements IAnyTypeData { |
|
16 | 2029 |
public void acceptImpl_() {} |
17 |
|
|
18 | 524 |
protected void doAcceptStarts_(IDataVisitor aVisitor) { |
19 | 524 |
aVisitor.visitAnyTypeDataStarts(this); |
20 |
} |
|
21 | 524 |
protected void doAcceptEnds_(IDataVisitor aVisitor) { |
22 | 524 |
aVisitor.visitAnyTypeDataEnds(this); |
23 |
} |
|
24 |
} |
|
25 |
|
|