Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_RDF_LITERAL_HPP
2 : #define INCLUDED_COM_SUN_STAR_RDF_LITERAL_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include <cassert>
7 :
8 : #include "com/sun/star/rdf/XLiteral.hpp"
9 : #include "com/sun/star/rdf/XURI.hpp"
10 : #include "com/sun/star/uno/DeploymentException.hpp"
11 : #include "com/sun/star/uno/Exception.hpp"
12 : #include "com/sun/star/uno/RuntimeException.hpp"
13 : #include "com/sun/star/uno/XComponentContext.hpp"
14 : #include "com/sun/star/uno/Any.hxx"
15 : #include "com/sun/star/uno/Reference.hxx"
16 : #include "com/sun/star/uno/Sequence.hxx"
17 : #include "cppu/unotype.hxx"
18 : #include "rtl/ustring.h"
19 : #include "rtl/ustring.hxx"
20 :
21 : namespace com { namespace sun { namespace star { namespace rdf {
22 :
23 : class Literal {
24 : public:
25 160 : static ::com::sun::star::uno::Reference< css::rdf::XLiteral > create(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context, const ::rtl::OUString& Value) {
26 : assert(the_context.is());
27 160 : ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > the_arguments(1);
28 160 : the_arguments[0] <<= Value;
29 160 : ::com::sun::star::uno::Reference< css::rdf::XLiteral > the_instance;
30 : try {
31 160 : the_instance = ::com::sun::star::uno::Reference< css::rdf::XLiteral >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.rdf.Literal" ), the_arguments, the_context), ::com::sun::star::uno::UNO_QUERY);
32 0 : } catch (const ::com::sun::star::uno::RuntimeException &) {
33 0 : throw;
34 0 : } catch (const ::com::sun::star::uno::Exception & the_exception) {
35 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.rdf.Literal of type com.sun.star.rdf.XLiteral: " ) + the_exception.Message, the_context);
36 : }
37 160 : if (!the_instance.is()) {
38 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.rdf.Literal of type com.sun.star.rdf.XLiteral" ), the_context);
39 : }
40 160 : return the_instance;
41 : }
42 :
43 30 : static ::com::sun::star::uno::Reference< css::rdf::XLiteral > createWithType(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context, const ::rtl::OUString& Value, const ::com::sun::star::uno::Reference< css::rdf::XURI >& Type) {
44 : assert(the_context.is());
45 30 : ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > the_arguments(2);
46 30 : the_arguments[0] <<= Value;
47 30 : the_arguments[1] <<= Type;
48 30 : ::com::sun::star::uno::Reference< css::rdf::XLiteral > the_instance;
49 : try {
50 30 : the_instance = ::com::sun::star::uno::Reference< css::rdf::XLiteral >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.rdf.Literal" ), the_arguments, the_context), ::com::sun::star::uno::UNO_QUERY);
51 0 : } catch (const ::com::sun::star::uno::RuntimeException &) {
52 0 : throw;
53 0 : } catch (const ::com::sun::star::uno::Exception & the_exception) {
54 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.rdf.Literal of type com.sun.star.rdf.XLiteral: " ) + the_exception.Message, the_context);
55 : }
56 30 : if (!the_instance.is()) {
57 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.rdf.Literal of type com.sun.star.rdf.XLiteral" ), the_context);
58 : }
59 30 : return the_instance;
60 : }
61 :
62 2 : static ::com::sun::star::uno::Reference< css::rdf::XLiteral > createWithLanguage(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context, const ::rtl::OUString& Value, const ::rtl::OUString& Language) {
63 : assert(the_context.is());
64 2 : ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > the_arguments(2);
65 2 : the_arguments[0] <<= Value;
66 2 : the_arguments[1] <<= Language;
67 2 : ::com::sun::star::uno::Reference< css::rdf::XLiteral > the_instance;
68 : try {
69 2 : the_instance = ::com::sun::star::uno::Reference< css::rdf::XLiteral >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.rdf.Literal" ), the_arguments, the_context), ::com::sun::star::uno::UNO_QUERY);
70 0 : } catch (const ::com::sun::star::uno::RuntimeException &) {
71 0 : throw;
72 0 : } catch (const ::com::sun::star::uno::Exception & the_exception) {
73 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.rdf.Literal of type com.sun.star.rdf.XLiteral: " ) + the_exception.Message, the_context);
74 : }
75 2 : if (!the_instance.is()) {
76 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.rdf.Literal of type com.sun.star.rdf.XLiteral" ), the_context);
77 : }
78 2 : return the_instance;
79 : }
80 :
81 : private:
82 : Literal(); // not implemented
83 : Literal(Literal &); // not implemented
84 : ~Literal(); // not implemented
85 : void operator =(Literal); // not implemented
86 : };
87 :
88 : } } } }
89 :
90 : #endif // INCLUDED_COM_SUN_STAR_RDF_LITERAL_HPP
|