001: /*
002: * $Header: /cvsroot/mvnforum/mvnforum/contrib/phpbb2mvnforum/src/org/mvnforum/phpbb2mvnforum/db/PhpbbPrivmMsgsText.java,v 1.3 2007/01/15 10:27:33 dungbtm Exp $
003: * $Author: dungbtm $
004: * $Revision: 1.3 $
005: * $Date: 2007/01/15 10:27:33 $
006: *
007: * ====================================================================
008: *
009: * Copyright (C) 2002-2007 by MyVietnam.net
010: *
011: * All copyright notices regarding mvnForum MUST remain
012: * intact in the scripts and in the outputted HTML.
013: * The "powered by" text/logo with a link back to
014: * http://www.mvnForum.com and http://www.MyVietnam.net in
015: * the footer of the pages MUST remain visible when the pages
016: * are viewed on the internet or intranet.
017: *
018: * This program is free software; you can redistribute it and/or modify
019: * it under the terms of the GNU General Public License as published by
020: * the Free Software Foundation; either version 2 of the License, or
021: * any later version.
022: *
023: * This program is distributed in the hope that it will be useful,
024: * but WITHOUT ANY WARRANTY; without even the implied warranty of
025: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
026: * GNU General Public License for more details.
027: *
028: * You should have received a copy of the GNU General Public License
029: * along with this program; if not, write to the Free Software
030: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
031: *
032: * Support can be obtained from support forums at:
033: * http://www.mvnForum.com/mvnforum/index
034: *
035: * Correspondence and Marketing Questions can be sent to:
036: * info at MyVietnam net
037: *
038: * @author:
039: */
040: package org.mvnforum.phpbb2mvnforum.db;
041:
042: //import java.sql.*; // @todo: uncomment as needed
043: import java.util.Collection;//for xml support
044: import java.util.Iterator;//for xml support
045:
046: /*
047: * Included columns: privmsgs_text_id, privmsgs_bbcode_uid, privmsgs_text
048: * Excluded columns:
049: */
050: public class PhpbbPrivmMsgsText {
051: private int privmsgs_text_id;
052: private String privmsgs_bbcode_uid;
053: private String privmsgs_text;
054:
055: public int getprivmsgs_text_id() {
056: return privmsgs_text_id;
057: }
058:
059: public void setprivmsgs_text_id(int privmsgs_text_id) {
060: this .privmsgs_text_id = privmsgs_text_id;
061: }
062:
063: public String getprivmsgs_bbcode_uid() {
064: return privmsgs_bbcode_uid;
065: }
066:
067: public void setprivmsgs_bbcode_uid(String privmsgs_bbcode_uid) {
068: this .privmsgs_bbcode_uid = privmsgs_bbcode_uid;
069: }
070:
071: public String getprivmsgs_text() {
072: return privmsgs_text;
073: }
074:
075: public void setprivmsgs_text(String privmsgs_text) {
076: this .privmsgs_text = privmsgs_text;
077: }
078:
079: public String getXML() {
080: StringBuffer xml = new StringBuffer(1024);
081: xml.append("<phpbb_privmsgs_textSection>\n");
082: xml.append(" <Rows>\n");
083: xml.append(" <Row>\n");
084: xml.append(" <Column>\n");
085: xml.append(" <Name>privmsgs_text_id</Name>\n");
086: xml.append(" <Value>").append(
087: String.valueOf(privmsgs_text_id)).append("</Value>\n");
088: xml.append(" </Column>\n");
089: xml.append(" <Column>\n");
090: xml.append(" <Name>privmsgs_bbcode_uid</Name>\n");
091: xml.append(" <Value>").append(
092: String.valueOf(privmsgs_bbcode_uid)).append(
093: "</Value>\n");
094: xml.append(" </Column>\n");
095: xml.append(" <Column>\n");
096: xml.append(" <Name>privmsgs_text</Name>\n");
097: xml.append(" <Value>").append(
098: String.valueOf(privmsgs_text)).append("</Value>\n");
099: xml.append(" </Column>\n");
100: xml.append(" </Row>\n");
101: xml.append(" </Rows>\n");
102: xml.append("</phpbb_privmsgs_textSection>\n");
103: return xml.toString();
104: }
105:
106: public static String getXML(Collection objphpbb_privmsgs_textBeans) {
107: StringBuffer xml = new StringBuffer(1024);
108: Iterator iterator = objphpbb_privmsgs_textBeans.iterator();
109: xml.append("<phpbb_privmsgs_textSection>\n");
110: xml.append(" <Rows>\n");
111: while (iterator.hasNext()) {
112: PhpbbPrivmMsgsText objphpbb_privmsgs_textBean = (PhpbbPrivmMsgsText) iterator
113: .next();
114: xml.append(" <Row>\n");
115: xml.append(" <Column>\n");
116: xml.append(" <Name>privmsgs_text_id</Name>\n");
117: xml
118: .append(" <Value>")
119: .append(
120: String
121: .valueOf(objphpbb_privmsgs_textBean.privmsgs_text_id))
122: .append("</Value>\n");
123: xml.append(" </Column>\n");
124: xml.append(" <Column>\n");
125: xml.append(" <Name>privmsgs_bbcode_uid</Name>\n");
126: xml
127: .append(" <Value>")
128: .append(
129: String
130: .valueOf(objphpbb_privmsgs_textBean.privmsgs_bbcode_uid))
131: .append("</Value>\n");
132: xml.append(" </Column>\n");
133: xml.append(" <Column>\n");
134: xml.append(" <Name>privmsgs_text</Name>\n");
135: xml
136: .append(" <Value>")
137: .append(
138: String
139: .valueOf(objphpbb_privmsgs_textBean.privmsgs_text))
140: .append("</Value>\n");
141: xml.append(" </Column>\n");
142: xml.append(" </Row>\n");
143: }//while
144: xml.append(" </Rows>\n");
145: xml.append("</phpbb_privmsgs_textSection>\n");
146: return xml.toString();
147: }
148: } //end of class phpbb_privmsgs_textBean
|