KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas_lib > deployment > xml > Qname


1 /**
2  * JOnAS: Java(TM) Open Application Server
3  * Copyright (C) 1999 Bull S.A.
4  * Contact: jonas-team@objectweb.org
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or 1any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19  * USA
20  *
21  * Initial developer: Florent BENOIT
22  * --------------------------------------------------------------------------
23  * $Id: Qname.java,v 1.2 2004/05/10 12:04:39 sauthieg Exp $
24  * --------------------------------------------------------------------------
25  */

26
27 package org.objectweb.jonas_lib.deployment.xml;
28
29 import javax.xml.namespace.QName JavaDoc;
30
31 /**
32  * This class defines an implementation for a QName
33  * It is use by Soap-Header or Service-qname
34  * @author Florent Benoit
35  */

36 public class Qname extends AbsElement {
37
38     /**
39      * Name of the element
40      */

41     private String JavaDoc name = null;
42
43     /**
44      * Internal QName
45      */

46     private QName JavaDoc qName = null;
47
48
49     /**
50      * Constructor : build a new object
51      */

52     public Qname() {
53         super();
54     }
55
56
57     // Setters
58

59     /**
60      * Sets the QName of this object
61      * @param qName QName of this object
62      */

63     public void setQName(QName JavaDoc qName) {
64         this.qName = qName;
65     }
66
67     /**
68      * Sets the Name of this object
69      * @param name name of this object
70      */

71     public void setName(String JavaDoc name) {
72         this.name = name;
73     }
74
75     // Getters
76

77     /**
78      * @return the QName of this object
79      */

80     public QName JavaDoc getQName() {
81         return qName;
82     }
83
84
85
86     /**
87      * Represents this element by it's XML description.
88      * @param indent use this indent for prexifing XML representation.
89      * @return the XML description of this object.
90      */

91     public String JavaDoc toXML(int indent) {
92         StringBuffer JavaDoc sb = new StringBuffer JavaDoc();
93         sb.append(indent(indent));
94         //String prefix = qName.getPrefix();
95
String JavaDoc prefix = "pr";
96
97         if (qName == null) {
98             return "";
99         }
100
101         String JavaDoc namespaceURI = qName.getNamespaceURI();
102         String JavaDoc localPart = qName.getLocalPart();
103
104
105         sb.append("<");
106         sb.append(name);
107         sb.append(" xmlns:");
108         sb.append(prefix);
109         sb.append("=\"");
110         sb.append(namespaceURI);
111         sb.append("\">");
112         sb.append(prefix);
113         sb.append(":");
114         sb.append(localPart);
115         sb.append("</");
116         sb.append(name);
117         sb.append(">\n");
118
119         return sb.toString();
120     }
121
122 }
123
Popular Tags