KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > ws > jaxme > impl > JMSAXDriver


1 /*
2  * Copyright 2005 The Apache Software Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.ws.jaxme.impl;
17
18 import org.xml.sax.ContentHandler JavaDoc;
19 import org.xml.sax.SAXException JavaDoc;
20 import org.xml.sax.helpers.AttributesImpl JavaDoc;
21
22
23 /** Interface of an object, which is able to convert another
24  * object into SAX events.
25  */

26 public interface JMSAXDriver {
27     /** Returns the objects attributes.
28      */

29     public AttributesImpl JavaDoc getAttributes(JMSAXDriverController pController, Object JavaDoc pObject) throws SAXException JavaDoc;
30
31     /** Creates the objects content into SAX events, which
32      * are being fired into the given content handler.
33      */

34     public void marshalChilds(JMSAXDriverController pController, ContentHandler JavaDoc pHandler, Object JavaDoc pObject) throws SAXException JavaDoc;
35
36     /** Returns a suggested prefix for the namespace
37      * <code>pNamespaceURI</code>, or null, if no suggestion
38      * is available.
39      */

40     public String JavaDoc getPreferredPrefix(String JavaDoc pNamespaceURI);
41 }
42
Popular Tags