2010-10-12 15:56:41 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2004-11-16 11:22:36 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 12:55:21 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2004-11-16 11:22:36 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2004-11-16 11:22:36 +00:00
|
|
|
*
|
2008-04-11 12:55:21 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-11-16 11:22:36 +00:00
|
|
|
*
|
2008-04-11 12:55:21 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2004-11-16 11:22:36 +00:00
|
|
|
*
|
2008-04-11 12:55:21 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2004-11-16 11:22:36 +00:00
|
|
|
*
|
2008-04-11 12:55:21 +00:00
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2004-11-16 11:22:36 +00:00
|
|
|
*
|
2008-04-11 12:55:21 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2004-11-16 11:22:36 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2011-01-19 20:27:24 +01:00
|
|
|
#include <domimplementation.hxx>
|
|
|
|
|
|
|
|
#include <rtl/instance.hxx>
|
|
|
|
|
2004-11-16 11:22:36 +00:00
|
|
|
|
|
|
|
namespace DOM
|
|
|
|
{
|
2011-01-19 20:27:24 +01:00
|
|
|
// why the heck is this thing static?
|
|
|
|
// perhaps it would be helpful to know what the implementation should
|
|
|
|
// do to answer this question...
|
|
|
|
namespace {
|
|
|
|
struct DOMImplementation
|
|
|
|
: public ::rtl::Static<CDOMImplementation, DOMImplementation> {};
|
|
|
|
}
|
|
|
|
|
2004-11-16 11:22:36 +00:00
|
|
|
CDOMImplementation* CDOMImplementation::get()
|
|
|
|
{
|
2011-01-19 20:27:24 +01:00
|
|
|
return & DOMImplementation::get();
|
2004-11-16 11:22:36 +00:00
|
|
|
}
|
|
|
|
|
2011-01-19 20:27:24 +01:00
|
|
|
// there is just 1 static instance, so these must not delete it!
|
|
|
|
void SAL_CALL CDOMImplementation::acquire() throw () { }
|
|
|
|
void SAL_CALL CDOMImplementation::release() throw () { }
|
|
|
|
|
2004-11-16 11:22:36 +00:00
|
|
|
/**
|
|
|
|
Creates a DOM Document object of the specified type with its document element.
|
|
|
|
*/
|
|
|
|
Reference <XDocument > SAL_CALL CDOMImplementation::createDocument(
|
2011-01-19 20:27:24 +01:00
|
|
|
OUString const& /*rNamespaceURI*/,
|
|
|
|
OUString const& /*rQualifiedName*/,
|
|
|
|
Reference< XDocumentType > const& /*xDoctype*/)
|
2004-11-16 11:22:36 +00:00
|
|
|
throw (RuntimeException)
|
|
|
|
{
|
2011-02-10 16:45:05 +01:00
|
|
|
OSL_ENSURE(false,
|
|
|
|
"CDOMImplementation::createDocument: not implemented (#i113683#)");
|
2004-11-16 11:22:36 +00:00
|
|
|
return Reference<XDocument>();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Creates an empty DocumentType node.
|
|
|
|
*/
|
|
|
|
Reference< XDocumentType > SAL_CALL CDOMImplementation::createDocumentType(
|
2011-01-19 20:27:24 +01:00
|
|
|
OUString const& /*rQualifiedName*/,
|
|
|
|
OUString const& /*rPublicId*/, OUString const& /*rSystemId*/)
|
2004-11-16 11:22:36 +00:00
|
|
|
throw (RuntimeException)
|
|
|
|
{
|
2011-02-10 16:45:05 +01:00
|
|
|
OSL_ENSURE(false, "CDOMImplementation::createDocumentType: "
|
|
|
|
"not implemented (#i113683#)");
|
2004-11-16 11:22:36 +00:00
|
|
|
return Reference<XDocumentType>();
|
|
|
|
}
|
2011-01-19 20:27:24 +01:00
|
|
|
|
2004-11-16 11:22:36 +00:00
|
|
|
/**
|
|
|
|
Test if the DOM implementation implements a specific feature.
|
|
|
|
*/
|
2011-01-19 20:27:24 +01:00
|
|
|
sal_Bool SAL_CALL
|
|
|
|
CDOMImplementation::hasFeature(OUString const& /*feature*/, OUString const& /*ver*/)
|
2004-11-16 11:22:36 +00:00
|
|
|
throw (RuntimeException)
|
|
|
|
{
|
2011-02-10 16:45:05 +01:00
|
|
|
OSL_ENSURE(false,
|
|
|
|
"CDOMImplementation::hasFeature: not implemented (#i113683#)");
|
2004-11-16 11:22:36 +00:00
|
|
|
return sal_False;
|
|
|
|
}
|
|
|
|
}
|
2010-10-12 15:56:41 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|