/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 . */ #ifndef __com_sun_star_configuration_backend_XSchemaHandler_idl__ #define __com_sun_star_configuration_backend_XSchemaHandler_idl__ #include #include #include #include module com { module sun { module star { module configuration { module backend { /** receives a description of a configuration schema as a sequence of events. @since OOo 1.1.2 */ published interface XSchemaHandler: ::com::sun::star::uno::XInterface { /** receives notification that a schema description is started.

The schema description may comprise components templates or both.

@throws com::sun::star::configuration::backend::MalformedDataException if a schema is already started (and has not been ended). @throws com::sun::star::lang::WrappedTargetException if an error occurs processing the event. */ void startSchema( ) raises( MalformedDataException, com::sun::star::lang::WrappedTargetException ); /** receives notification that the current schema description is complete.

Must match a previous call to startSchema().

@throws com::sun::star::configuration::backend::MalformedDataException
  • if invalid data is detected in the schema
  • if there is an unfinished component or template in progress
  • if no schema is started at all

Not every implementation can detect each condition

@throws com::sun::star::lang::WrappedTargetException if an error occurs processing the event. */ void endSchema( ) raises( MalformedDataException, com::sun::star::lang::WrappedTargetException ); /** receives notification that the schema depends on templates from a different component. @param aName specifies the name of the component. @throws com::sun::star::configuration::backend::MalformedDataException
  • if there is an unfinished component or template in progress
  • if no schema is started at all
  • if the name is not a valid component name
  • if the requested component is not found

Not every implementation can detect each condition

@throws com::sun::star::lang::WrappedTargetException if an error occurs processing the event. */ void importComponent( [in] string aName ) raises( MalformedDataException, com::sun::star::lang::WrappedTargetException ); /** receives notification that a component description is started.

Subsequent calls describe the schema of the component until a matching call to endComponent() is encountered.

@param aName specifies the name of the component. @throws com::sun::star::configuration::backend::MalformedDataException
  • if there is an unfinished component or template in progress
  • if no schema is started at all
  • if there already is a component data tree of this name
  • if the name is not a valid component name
  • if the instance supports no component schemas (only templates)

Not every implementation can detect each condition

@throws com::sun::star::lang::WrappedTargetException if an error occurs processing the event. */ void startComponent( [in] string aName ) raises( MalformedDataException, com::sun::star::lang::WrappedTargetException ); /** receives notification that a component description is complete.

Must match a previous call to startComponent().

@throws com::sun::star::configuration::backend::MalformedDataException
  • if invalid data is detected in the component
  • if there is an unfinished subnode in progress
  • if no component has been started at all
  • if the instance supports no component schemas (only templates)

Not every implementation can detect each condition

@throws com::sun::star::lang::WrappedTargetException if an error occurs processing the event. */ void endComponent( ) raises( MalformedDataException, com::sun::star::lang::WrappedTargetException ); /** receives notification that a template description is started for a group.

Subsequent calls describe the members and properties of the template until a matching call to endTemplate() is encountered.

@param aTemplate specifies the identity of the template. @param aAttributes specifies the attributes of the template.

The value is a combination of SchemaAttribute flags.

SchemaAttribute::EXTENSIBLE can be used to describe a template for a node with an extensible set of properties.

@throws com::sun::star::configuration::backend::MalformedDataException
  • if there is an unfinished component or template in progress
  • if no schema is started at all
  • if there already is a template with that identifier
  • if the name is not a valid template identifier
  • if the attributes are not valid for a group
  • if the instance supports no templates (only component schemas)

Not every implementation can detect each condition

@throws com::sun::star::lang::WrappedTargetException if an error occurs processing the event. @see com::sun::star::configuration::backend::SchemaAttribute */ void startGroupTemplate( [in] TemplateIdentifier aTemplate, [in] short aAttributes ) raises( MalformedDataException, com::sun::star::lang::WrappedTargetException ); /** receives notification that a template description is started for a set.

Subsequent calls describe the members and properties of the template until a matching call to endTemplate() is encountered.

@param aTemplate specifies the identity of the template. @param aAttributes specifies the attributes of the template.

The value is a combination of SchemaAttribute flags.

SchemaAttribute::EXTENSIBLE can be used to describe a template for a node with an extensible set of properties.

@param aItemType specifies the (default) template for set items. @throws com::sun::star::configuration::backend::MalformedDataException
  • if there is an unfinished component or template in progress
  • if no schema is started at all
  • if there already is a template with that identifier
  • if the item-type template is not found
  • if the name or item-type are not valid template identifiers
  • if the attributes are not valid for a set
  • if the instance supports no templates (only component schemas).

Not every implementation can detect each condition

@throws com::sun::star::lang::WrappedTargetException if an error occurs processing the event. @see com::sun::star::configuration::backend::SchemaAttribute */ void startSetTemplate( [in] TemplateIdentifier aTemplate, [in] short aAttributes, [in] TemplateIdentifier aItemType ) raises( MalformedDataException, com::sun::star::lang::WrappedTargetException ); /** receives notification that a template description is complete.

Must match a previous call to startGroupTemplate() or startSetTemplate().

@throws com::sun::star::configuration::backend::MalformedDataException
  • if invalid data is detected in the template
  • if there is an unfinished subnode in progress
  • if no template has been started at all
  • if the instance supports no templates (only component schemas)

Not every implementation can detect each condition

@throws com::sun::star::lang::WrappedTargetException if an error occurs processing the event. */ void endTemplate( ) raises( MalformedDataException, com::sun::star::lang::WrappedTargetException ); /** receives notification that a group description is started.

Subsequent calls describe the members and properties of the group until a matching call to endNode() is encountered.

@param aName specifies the name of the group. @param aAttributes specifies the attributes of the node.

The value is a combination of SchemaAttribute flags.

SchemaAttribute::EXTENSIBLE can be used to describe a group with an extensible set of properties.

@throws com::sun::star::configuration::backend::MalformedDataException
  • if there isn't a group node in progress currently
  • if there already is a node with that name
  • if the name is not a valid node name
  • if the attributes are not valid for a group

Not every implementation can detect each condition

@throws com::sun::star::lang::WrappedTargetException if an error occurs processing the event. @see com::sun::star::configuration::backend::SchemaAttribute */ void startGroup( [in] string aName, [in] short aAttributes ) raises( MalformedDataException, com::sun::star::lang::WrappedTargetException ); /** receives notification that a set description is started.

Subsequent calls describe the item-types and properties of the set until a matching call to endNode() is encountered.

@param aName specifies the name of the set. @param aAttributes specifies the attributes of the node.

The value is a combination of SchemaAttribute flags.

SchemaAttribute::EXTENSIBLE can be used to describe a set with an extensible set of properties.

@param aItemType specifies the (default) template for set items. @throws com::sun::star::configuration::backend::MalformedDataException
  • if there isn't a group node in progress currently
  • if there already is a node with that name
  • if the item-type template is not found
  • if the name is not a valid node name
  • if the item-type is not a valid template identifier
  • if the attributes are not valid for a set

Not every implementation can detect each condition

@throws com::sun::star::lang::WrappedTargetException if an error occurs processing the event. @see com::sun::star::configuration::backend::SchemaAttribute */ void startSet( [in] string aName, [in] short aAttributes, [in] TemplateIdentifier aItemType ) raises( MalformedDataException, com::sun::star::lang::WrappedTargetException ); /** receives notification that a node description is complete.

Must match the last open call to startGroup() or startSet().

@throws com::sun::star::configuration::backend::MalformedDataException
  • if the name is not the name of the node in progress
  • if invalid data is detected in the node
  • if no node has been started at all

Not every implementation can detect each condition

@throws com::sun::star::lang::WrappedTargetException if an error occurs processing the event. */ void endNode( ) raises( MalformedDataException, com::sun::star::lang::WrappedTargetException ); /** receives notification that a property is added to the current node.

The property will have a default value of `NULL` (unless it is SchemaAttribute::REQUIRED).

@param aName specifies the name of the new property. @param aAttributes specifies the attributes of the new property.

The value is a combination of SchemaAttribute flags.

@param aType specifies the type of the new property. @throws com::sun::star::configuration::backend::MalformedDataException
  • if there isn't a group or extensible node in progress currently
  • if a property with the same name already exists
  • if the specified type is not allowed
  • if the name is not a valid property name
  • if the attributes are not valid for a property

Not every implementation can detect each condition

@throws com::sun::star::lang::WrappedTargetException if an error occurs processing the event. @see com::sun::star::configuration::backend::SchemaAttribute */ void addProperty( [in] string aName, [in] short aAttributes, [in] type aType ) raises( MalformedDataException, com::sun::star::lang::WrappedTargetException ); /** receives notification that a property having a default value is added to the current node. @param aName specifies the name of the new property. @param aAttributes specifies the attributes of the new property.

The value is a combination of SchemaAttribute flags.

@param aDefaultValue specifies the value of the new property.

The value also determines the type. Therefore the value must not be `VOID`.

@throws com::sun::star::configuration::backend::MalformedDataException
  • if there isn't a group or extensible node in progress currently
  • if a property with the same name already exists
  • if the type of the default value is not an allowed type, or if the default value is `VOID`
  • if the name is not a valid property name
  • if the attributes are not valid for a property

Not every implementation can detect each condition

@throws com::sun::star::lang::WrappedTargetException if an error occurs processing the event. @see com::sun::star::configuration::backend::SchemaAttribute */ void addPropertyWithDefault( [in] string aName, [in] short aAttributes, [in] any aDefaultValue ) raises( MalformedDataException, com::sun::star::lang::WrappedTargetException ); /** receives notification that the current group has a child node that is an instance of a specified template. @param aName specifies the name of the new node. @param aTemplate specifies a template that describes the new node. @throws com::sun::star::configuration::backend::MalformedDataException
  • if there isn't a group node in progress currently
  • if there already is a node with that name
  • if the template is not found
  • if the name or template name are not valid

Not every implementation can detect each condition

@throws com::sun::star::lang::WrappedTargetException if an error occurs processing the event. */ void addInstance( [in] string aName, [in] TemplateIdentifier aTemplate ) raises( MalformedDataException, com::sun::star::lang::WrappedTargetException ); /** receives notification that the current set can contain items that are instances of a specified template. @param aItemType specifies a template that is accepted as valid item type for the current set node. @throws com::sun::star::configuration::backend::MalformedDataException
  • if there isn't a set node in progress currently
  • if the template is not found
  • if the name is not a valid template name

Not every implementation can detect each condition

@throws com::sun::star::lang::WrappedTargetException if an error occurs processing the event. */ void addItemType( [in] TemplateIdentifier aItemType ) raises( MalformedDataException, com::sun::star::lang::WrappedTargetException ); }; }; }; }; }; }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */