mirror of
https://github.com/twiglet/cs2j.git
synced 2025-01-18 13:15:17 +01:00
94 lines
2.2 KiB
Java
94 lines
2.2 KiB
Java
|
/*
|
||
|
Copyright 2007-2010 Rustici Software, LLC
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
|
||
|
Author(s):
|
||
|
|
||
|
Kevin Glynn (kevin.glynn@scorm.com)
|
||
|
*/
|
||
|
|
||
|
package RusticiSoftware.System.Xml;
|
||
|
|
||
|
import org.w3c.dom.Attr;
|
||
|
|
||
|
public class XmlAttribute extends XmlNode {
|
||
|
|
||
|
|
||
|
protected XmlAttribute()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
public XmlAttribute(Attr a)
|
||
|
{
|
||
|
setNode(a);
|
||
|
}
|
||
|
|
||
|
private Attr getAttribute()
|
||
|
{
|
||
|
return (Attr)getNode();
|
||
|
}
|
||
|
public String getValue()
|
||
|
{
|
||
|
return getAttribute().getValue();
|
||
|
}
|
||
|
|
||
|
public void setValue(String str)
|
||
|
{
|
||
|
getAttribute().setValue(str);
|
||
|
}
|
||
|
|
||
|
protected void getOuterXml(StringBuffer sb)
|
||
|
{
|
||
|
String value = getAttribute().getValue();
|
||
|
sb.append(getAttribute().getName());
|
||
|
sb.append("=\"");
|
||
|
char c;
|
||
|
|
||
|
for (int i = 0; i < value.length(); i++) {
|
||
|
c = value.charAt(i);
|
||
|
switch(c) {
|
||
|
case '<' :
|
||
|
sb.append("<");
|
||
|
break;
|
||
|
case '>' :
|
||
|
sb.append(">");
|
||
|
break;
|
||
|
case '\'' :
|
||
|
sb.append("'");
|
||
|
break;
|
||
|
case '\"' :
|
||
|
sb.append(""");
|
||
|
break;
|
||
|
case '&' :
|
||
|
sb.append("&");
|
||
|
break;
|
||
|
case '\r' :
|
||
|
sb.append("
");
|
||
|
break;
|
||
|
case '\t' :
|
||
|
sb.append("	");
|
||
|
break;
|
||
|
case '\n' :
|
||
|
sb.append("
");
|
||
|
break;
|
||
|
default :
|
||
|
sb.append(c);
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
sb.append("\"");
|
||
|
}
|
||
|
|
||
|
}
|