|
|||||||||||||||||||
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 | |||||||||||||||
AnyAttribute.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.schema.element; |
|
11 |
|
|
12 |
import org.jbind.xml.core.cmp.IComponent; |
|
13 |
import org.jbind.xml.msg.IConstraintViolations; |
|
14 |
import org.jbind.xml.schema.cmp.AttrWildcard; |
|
15 |
import org.jbind.xml.schema.instantiation.IElementHelper; |
|
16 |
|
|
17 |
public class AnyAttribute extends Any implements IAnyAttribute { |
|
18 | 66 |
public AnyAttribute(CreationParams aCreationParams) { |
19 | 66 |
super(aCreationParams); |
20 |
} |
|
21 |
|
|
22 | 66 |
public IComponent createComponent(IElementHelper anElementHelper, IConstraintViolations aViolations) { |
23 | 66 |
return new AttrWildcard(this, getWildcard()); |
24 |
} |
|
25 |
|
|
26 |
} |
|
27 |
|
|