summaryrefslogtreecommitdiffstats
path: root/unoxml/source/dom/text.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-11-16 11:27:20 +0000
committerOliver Bolte <obo@openoffice.org>2004-11-16 11:27:20 +0000
commit0a079410e2e36aec5234328b99bc599467946fe5 (patch)
treea4f59651bb11ed3f4176c052cc193cfd5ad1db6c /unoxml/source/dom/text.cxx
parentINTEGRATION: CWS eforms2 (1.1.2); FILE MERGED (diff)
downloadcore-0a079410e2e36aec5234328b99bc599467946fe5.tar.gz
core-0a079410e2e36aec5234328b99bc599467946fe5.zip
INTEGRATION: CWS eforms2 (1.2.2); FILE MERGED
2004/04/23 11:34:59 lo 1.2.2.1: #i26721# put/get/post support for submission node cloning
Diffstat (limited to 'unoxml/source/dom/text.cxx')
-rw-r--r--unoxml/source/dom/text.cxx174
1 files changed, 87 insertions, 87 deletions
diff --git a/unoxml/source/dom/text.cxx b/unoxml/source/dom/text.cxx
index bbb141f1708b..72aea8a98870 100644
--- a/unoxml/source/dom/text.cxx
+++ b/unoxml/source/dom/text.cxx
@@ -1,88 +1,88 @@
-/*************************************************************************
- *
- * $RCSfile: text.cxx,v $
- *
- * $Revision: 1.2 $
- *
- * last change: $Author: lo $ $Date: 2004-02-19 13:24:04 $
- *
- * The Contents of this file are made available subject to the terms of
- * either of the following licenses
- *
- * - GNU Lesser General Public License Version 2.1
- * - Sun Industry Standards Source License Version 1.1
- *
- * Sun Microsystems Inc., October, 2000
- *
- * GNU Lesser General Public License Version 2.1
- * =============================================
- * Copyright 2000 by Sun Microsystems, Inc.
- * 901 San Antonio Road, Palo Alto, CA 94303, USA
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License version 2.1, as published by the Free Software Foundation.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
- *
- *
- * Sun Industry Standards Source License Version 1.1
- * =================================================
- * The contents of this file are subject to the Sun Industry Standards
- * Source License Version 1.1 (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.openoffice.org/license.html.
- *
- * Software provided under this License is provided on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
- * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
- * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
- * See the License for the specific provisions governing your rights and
- * obligations concerning the Software.
- *
- * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
- *
- * Copyright: 2004 by Sun Microsystems, Inc.
- *
- * All Rights Reserved.
- *
- * Contributor(s): _______________________________________
- *
- *
- ************************************************************************/
-
-#include "text.hxx"
-namespace DOM
-{
- CText::CText(const xmlNodePtr aNodePtr)
- {
- m_aNodeType = NodeType_TEXT_NODE;
- init_characterdata(aNodePtr);
- }
-
-
- void CText::init_text(const xmlNodePtr aNodePtr)
- {
- init_characterdata(aNodePtr);
- }
-
- Reference< XText > SAL_CALL CText::splitText(sal_Int32 offset)
- throw (RuntimeException)
- {
- return Reference< XText >(this);
- }
-
- OUString SAL_CALL CText::getNodeName()throw (RuntimeException)
- {
- return OUString::createFromAscii("#text");
- }
-
+/*************************************************************************
+ *
+ * $RCSfile: text.cxx,v $
+ *
+ * $Revision: 1.3 $
+ *
+ * last change: $Author: obo $ $Date: 2004-11-16 12:27:20 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (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.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2004 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+#include "text.hxx"
+namespace DOM
+{
+ CText::CText(const xmlNodePtr aNodePtr)
+ {
+ m_aNodeType = NodeType_TEXT_NODE;
+ init_characterdata(aNodePtr);
+ }
+
+
+ void CText::init_text(const xmlNodePtr aNodePtr)
+ {
+ init_characterdata(aNodePtr);
+ }
+
+ Reference< XText > SAL_CALL CText::splitText(sal_Int32 offset)
+ throw (RuntimeException)
+ {
+ return Reference< XText >(this);
+ }
+
+ OUString SAL_CALL CText::getNodeName()throw (RuntimeException)
+ {
+ return OUString::createFromAscii("#text");
+ }
+
} \ No newline at end of file