KickJava   Java API By Example, From Geeks To Geeks.

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


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.io.Serializable JavaDoc;
28
29 public interface Filter extends Serializable JavaDoc {
30
31     public static final String JavaDoc ZEUS_XML_NAME = "filter";
32     public static final String JavaDoc[] ZEUS_ATTRIBUTES = {"name"};
33     public static final String JavaDoc[] ZEUS_ELEMENTS = {"call", "lookup", "markup", "switch", "constant", "date", "count"};
34
35     public Call getCall();
36
37     public void setCall(Call call);
38
39     public Lookup getLookup();
40
41     public void setLookup(Lookup lookup);
42
43     public Markup getMarkup();
44
45     public void setMarkup(Markup markup);
46
47     public Switch getXmlswitch();
48
49     public void setXmlswitch(Switch xmlswitch);
50
51     public Constant getConstant();
52
53     public void setConstant(Constant constant);
54
55     public Date getDate();
56
57     public void setDate(Date date);
58
59     public Count getCount();
60
61     public void setCount(Count count);
62
63     public String JavaDoc getName();
64
65     public void setName(String JavaDoc name);
66
67     public void marshal(File JavaDoc file) throws IOException JavaDoc;
68
69     public void marshal(OutputStream JavaDoc outputStream) throws IOException JavaDoc;
70
71     public void marshal(Writer JavaDoc writer) throws IOException JavaDoc;
72
73     public void setDocType(String JavaDoc name, String JavaDoc publicID, String JavaDoc systemID);
74
75     public void setOutputEncoding(String JavaDoc outputEncoding);
76
77 }
78
Popular Tags