KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > barracuda > contrib > dbroggisch > display > filters > dtd > Call


1 /**
2  * This class was generated from a set of XML constraints
3  * by the Enhydra Zeus XML Data Binding Framework. All
4  * source code in this file is constructed specifically
5  * to work with other Zeus-generated classes. If you
6  * modify this file by hand, you run the risk of breaking
7  * this interoperation, as well as introducing errors in
8  * source code compilation.
9  *
10  * * * * * MODIFY THIS FILE AT YOUR OWN RISK * * * * *
11  *
12  * To find out more about the Enhydra Zeus framework, you
13  * can point your browser at <http://zeus.enhydra.org>
14  * where you can download releases, join and discuss Zeus
15  * on user and developer mailing lists, and access source
16  * code. Please report any bugs through that website.
17  */

18 package org.enhydra.barracuda.contrib.dbroggisch.display.filters.dtd;
19
20 // Global Interface Import Statements
21
import java.io.File JavaDoc;
22 import java.io.IOException JavaDoc;
23 import java.io.OutputStream JavaDoc;
24 import java.io.Writer JavaDoc;
25
26 // Local Interface Import Statements
27
import java.util.List JavaDoc;
28 import java.io.Serializable JavaDoc;
29
30 public interface Call extends Serializable JavaDoc {
31
32     public static final String JavaDoc ZEUS_XML_NAME = "call";
33     public static final String JavaDoc[] ZEUS_ATTRIBUTES = {};
34     public static final String JavaDoc[] ZEUS_ELEMENTS = {"call", "lookup", "markup", "switch", "constant", "date", "count"};
35
36     public List JavaDoc getCallList();
37
38     public void setCallList(List JavaDoc callList);
39
40     public void addCall(Call call);
41
42     public void removeCall(Call call);
43
44     public List JavaDoc getLookupList();
45
46     public void setLookupList(List JavaDoc lookupList);
47
48     public void addLookup(Lookup lookup);
49
50     public void removeLookup(Lookup lookup);
51
52     public List JavaDoc getMarkupList();
53
54     public void setMarkupList(List JavaDoc markupList);
55
56     public void addMarkup(Markup markup);
57
58     public void removeMarkup(Markup markup);
59
60     public List JavaDoc getXmlswitchList();
61
62     public void setXmlswitchList(List JavaDoc xmlswitchList);
63
64     public void addXmlswitch(Switch xmlswitch);
65
66     public void removeXmlswitch(Switch xmlswitch);
67
68     public List JavaDoc getConstantList();
69
70     public void setConstantList(List JavaDoc constantList);
71
72     public void addConstant(Constant constant);
73
74     public void removeConstant(Constant constant);
75
76     public List JavaDoc getDateList();
77
78     public void setDateList(List JavaDoc dateList);
79
80     public void addDate(Date date);
81
82     public void removeDate(Date date);
83
84     public List JavaDoc getCountList();
85
86     public void setCountList(List JavaDoc countList);
87
88     public void addCount(Count count);
89
90     public void removeCount(Count count);
91
92     public void marshal(File JavaDoc file) throws IOException JavaDoc;
93
94     public void marshal(OutputStream JavaDoc outputStream) throws IOException JavaDoc;
95
96     public void marshal(Writer JavaDoc writer) throws IOException JavaDoc;
97
98     public void setDocType(String JavaDoc name, String JavaDoc publicID, String JavaDoc systemID);
99
100     public void setOutputEncoding(String JavaDoc outputEncoding);
101
102 }
103
Popular Tags