blob: a75b495e36574c67d587f44d4b397b7c6108e980 (
plain)
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
|
package syntaxParser;
/**
* ComplexLit
* Creation date: (3/3/2003 2:28:43 AM)
* @author: mattia parigiani
*/
class ComplexLit {
ScalarLitList scalarLitList;
/**
* ComplexLit constructor comment.
*/
public ComplexLit() {
super();
}
public ComplexLit( ScalarLitList l ){
scalarLitList = l;
}
String toXML(){
String result="" ;
try {
result += "complex literal not defined XSD";
} catch (Exception e ) {
e.printStackTrace();
}
return result;
}
}
|