blob: adde3c6e7c82440d7db8d1425b073571c482bfe4 [file] [log] [blame]
/**************************************************************
*
* 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_sdb_DataColumn_idl__
#define __com_sun_star_sdb_DataColumn_idl__
#ifndef __com_sun_star_sdb_ResultColumn_idl__
#include <com/sun/star/sdb/ResultColumn.idl>
#endif
module com { module sun { module star { module sdb {
published interface XColumn;
published interface XColumnUpdate;
/** defines a column used for a result set which contains the data definition
and the data of the column of the current row of a result set.
*/
published service DataColumn
{
service com::sun::star::sdb::ResultColumn;
/** is used to retrieve the columns value.
*/
interface XColumn;
/** is used to update the columns value.
*/
interface XColumnUpdate;
/** contains the column's value. This could be a constraint property, to
veto modifications, if a new value does not fit into rules
defined for the column.
*/
[optional, property] any Value;
/** contains the original value of the column.
*/
[optional, readonly, property] any OriginalValue;
};
//=============================================================================
}; }; }; };
/*===========================================================================
===========================================================================*/
#endif