|
|||||||||||||||||||
| 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 | |||||||||||||||
| ComplexTypeCC.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.cmp; |
|
| 11 |
|
|
| 12 |
import java.util.Set; |
|
| 13 |
|
|
| 14 |
import org.jbind.xml.core.cmp.ISourceInfo; |
|
| 15 |
import org.jbind.xml.core.type.IComplexCCType; |
|
| 16 |
import org.jbind.xml.core.type.ISimpleType; |
|
| 17 |
|
|
| 18 |
public class ComplexTypeCC extends ComplexType implements IComplexCCType {
|
|
| 19 |
|
|
| 20 | 451 |
public ComplexTypeCC(ISourceInfo aSourceInfo, String aNamespace, String aName, String aRole, Set aFinalTypes, Set aBlockTypes, boolean anIsAbstract, boolean anIsExtension) {
|
| 21 | 451 |
super(aSourceInfo, aNamespace, aName, aRole, aFinalTypes, aBlockTypes, anIsAbstract, anIsExtension); |
| 22 |
} |
|
| 23 |
|
|
| 24 | 2848 |
public boolean isComplex() {
|
| 25 | 2848 |
return true; |
| 26 |
} |
|
| 27 |
|
|
| 28 | 2646 |
public boolean isSimple() {
|
| 29 | 2646 |
return false; |
| 30 |
} |
|
| 31 |
|
|
| 32 | 16 |
public ISimpleType getSimpleContentType() {
|
| 33 | 16 |
return null; |
| 34 |
} |
|
| 35 |
|
|
| 36 |
} |
|
| 37 |
|
|
||||||||||