File: simpleElements.xml

package info (click to toggle)
mauve 20120103-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 28,504 kB
  • sloc: java: 250,155; sh: 2,834; xml: 208; makefile: 66
file content (39 lines) | stat: -rw-r--r-- 648 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?> 

<!--
    test data for simpleElementsTest
    
    Simple elements: primitives or elements that cannot contain child elements
    
    Note: all values are chosen arbitrarily and do not present anything useful
-->

<java version="1.4.1" class="java.beans.XMLDecoder"> 

 <boolean>true</boolean> 
 <boolean>false</boolean> 

 <char>j</char> 
 <char>a</char> 
 <char>v</char> 
 <char>a</char> 

 <byte>8</byte> 
 
 <short>16</short> 
 
 <int>32</int> 

 <long>64</long> 

 <float>32.0</float> 
 
 <double>64.0</double> 
 
 <string>Hello World</string> 
 
 <class>java.lang.Object</class>
 
 <null/>

</java>