/************************************************************** * * 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 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef __com_sun_star_beans_TolerantPropertySetResultType_idl__ #define __com_sun_star_beans_TolerantPropertySetResultType_idl__ //============================================================================= module com { module sun { module star { module beans { //============================================================================= /** specifies the possible failure types when using the XTolerantMultiPropertySet interface.

It usually matches one of the exception types that may occur when using the XPropertySet or XMultiPropertySet interfaces.

*/ constants TolerantPropertySetResultType { /** the property has been successfully set or retrieved. */ const short SUCCESS = 0; /** the property is not available.

For example if a UnknownPropertyException was catched.

*/ const short UNKNOWN_PROPERTY = 1; /** the value used with the property is not valid.

For example if a IllegalArgumentException was catched.

*/ const short ILLEGAL_ARGUMENT = 2; /** the property could not be changed at that time.

For example if a PropertyVetoException was catched.

*/ const short PROPERTY_VETO = 3; /** a WrappedTargetException did occur. */ const short WRAPPED_TARGET = 4; /** the operation failed and the reason is not known. */ const short UNKNOWN_FAILURE = 5; }; //============================================================================= }; }; }; }; #endif