Package com.bleujin.framework.xml

Examples of com.bleujin.framework.xml.XmlDocument


        super(rootElementName, rowElementName) ;
    }

    public Object handle(ResultSet resultSet) throws SQLException {
        StringBuffer buffer = (StringBuffer)super.handle(resultSet) ;
        return new XmlDocument(buffer);
    }
View Full Code Here


        buffer.append("<dName>" + dName + "</dName>\n") ;
        for (int i = 0; i < child.size(); i++) {
            buffer.append(((XmlSerializable)child.get(i)).toXml().getXmlString()) ;
        }
        buffer.append("</dept>\n") ;
        return new XmlDocument(buffer);

    }
View Full Code Here

        buffer.append("<emp>\n") ;
        buffer.append("\t<empNo>" + empNo + "</empNo>\n") ;
        buffer.append("\t<eName>" + eName + "</eName>\n") ;
        buffer.append("</emp>\n") ;

        return new XmlDocument(buffer);
    }
View Full Code Here

TOP

Related Classes of com.bleujin.framework.xml.XmlDocument

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.