e73b99b8dd
Change-Id: Ib903fb2fdb4c4c25f73053065b828dade8b63785 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86687 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
107 lines
3.7 KiB
C++
107 lines
3.7 KiB
C++
/* -*- 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 INCLUDED_IDLC_INC_ASTATTRIBUTE_HXX
|
|
#define INCLUDED_IDLC_INC_ASTATTRIBUTE_HXX
|
|
|
|
#include "astdeclaration.hxx"
|
|
#include "astscope.hxx"
|
|
|
|
#include <registry/types.hxx>
|
|
#include <rtl/ustring.hxx>
|
|
|
|
namespace typereg { class Writer; }
|
|
|
|
class AstAttribute final : public AstDeclaration, public AstScope {
|
|
public:
|
|
AstAttribute(
|
|
sal_uInt32 flags, AstType const * type, OString const & name,
|
|
AstScope * scope):
|
|
AstDeclaration(NT_attribute, name, scope),
|
|
AstScope(NT_attribute), m_flags(flags), m_pType(type)
|
|
{}
|
|
|
|
AstAttribute(NodeType nodeType, sal_uInt32 flags, AstType const * pType, const OString& name, AstScope* pScope)
|
|
: AstDeclaration(nodeType, name, pScope), AstScope(nodeType)
|
|
, m_flags(flags)
|
|
, m_pType(pType)
|
|
{}
|
|
|
|
void setExceptions(
|
|
OUString const * getDoc, DeclList const * getExc,
|
|
OUString const * setDoc, DeclList const * setExc)
|
|
{
|
|
if (getDoc != nullptr) {
|
|
m_getDocumentation = *getDoc;
|
|
}
|
|
if (getExc != nullptr) {
|
|
m_getExceptions = *getExc;
|
|
}
|
|
if (setDoc != nullptr) {
|
|
m_setDocumentation = *setDoc;
|
|
}
|
|
if (setExc != nullptr) {
|
|
m_setExceptions = *setExc;
|
|
}
|
|
}
|
|
|
|
DeclList::size_type getGetExceptionCount() const
|
|
{ return m_getExceptions.size(); }
|
|
|
|
DeclList::size_type getSetExceptionCount() const
|
|
{ return m_setExceptions.size(); }
|
|
|
|
bool isReadonly() const
|
|
{ return ((m_flags & AF_READONLY) == AF_READONLY); }
|
|
bool isOptional() const
|
|
{ return ((m_flags & AF_OPTIONAL) == AF_OPTIONAL); }
|
|
bool isBound() const
|
|
{ return ((m_flags & AF_BOUND) == AF_BOUND); }
|
|
bool isMayBeVoid() const
|
|
{ return ((m_flags & AF_MAYBEVOID) == AF_MAYBEVOID); }
|
|
bool isConstrained() const
|
|
{ return ((m_flags & AF_CONSTRAINED) == AF_CONSTRAINED); }
|
|
bool isTransient() const
|
|
{ return ((m_flags & AF_TRANSIENT) == AF_TRANSIENT); }
|
|
bool isMayBeAmbiguous() const
|
|
{ return ((m_flags & AF_MAYBEAMBIGUOUS) == AF_MAYBEAMBIGUOUS); }
|
|
bool isMayBeDefault() const
|
|
{ return ((m_flags & AF_MAYBEDEFAULT) == AF_MAYBEDEFAULT); }
|
|
bool isRemoveable() const
|
|
{ return ((m_flags & AF_REMOVABLE) == AF_REMOVABLE); }
|
|
|
|
void dumpBlob(
|
|
typereg::Writer & rBlob, sal_uInt16 index, sal_uInt16 * methodIndex) const;
|
|
|
|
private:
|
|
void dumpExceptions(
|
|
typereg::Writer & writer, OUString const & documentation,
|
|
DeclList const & exceptions, RTMethodMode flags,
|
|
sal_uInt16 * methodIndex) const;
|
|
|
|
const sal_uInt32 m_flags;
|
|
AstType const * m_pType;
|
|
OUString m_getDocumentation;
|
|
DeclList m_getExceptions;
|
|
OUString m_setDocumentation;
|
|
DeclList m_setExceptions;
|
|
};
|
|
|
|
#endif // INCLUDED_IDLC_INC_ASTATTRIBUTE_HXX
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|