|
|||||||||||||||||||
| 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 | |||||||||||||||
| XmlDecl.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 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.parser; |
|
| 11 |
|
|
| 12 |
public class XmlDecl {
|
|
| 13 |
|
|
| 14 |
private String myVersion, myEncoding, myStandalone; |
|
| 15 |
|
|
| 16 | 0 |
public XmlDecl(String aVersion, String anEncoding, String aStandalone) {
|
| 17 | 0 |
myVersion = aVersion; |
| 18 | 0 |
myEncoding = anEncoding; |
| 19 | 0 |
myStandalone = aStandalone; |
| 20 |
} |
|
| 21 |
|
|
| 22 | 0 |
public String getVersion() {
|
| 23 | 0 |
return myVersion; |
| 24 |
} |
|
| 25 | 0 |
public String getEncoding() {
|
| 26 | 0 |
return myEncoding; |
| 27 |
} |
|
| 28 | 0 |
public String getStandalone() {
|
| 29 | 0 |
return myStandalone; |
| 30 |
} |
|
| 31 |
|
|
| 32 |
} |
|
| 33 |
|
|
||||||||||