1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24 #ifndef INCLUDED_CONFIGMGR_SOURCE_NODE_HXX 25 #define INCLUDED_CONFIGMGR_SOURCE_NODE_HXX 26 27 #include "sal/config.h" 28 29 #include "rtl/ref.hxx" 30 #include "salhelper/simplereferenceobject.hxx" 31 32 #include "nodemap.hxx" 33 34 namespace rtl { class OUString; } 35 36 namespace configmgr { 37 38 class Node: public salhelper::SimpleReferenceObject { 39 public: 40 enum Kind { 41 KIND_PROPERTY, KIND_LOCALIZED_PROPERTY, KIND_LOCALIZED_VALUE, 42 KIND_GROUP, KIND_SET }; 43 44 virtual Kind kind() const = 0; 45 46 virtual rtl::Reference< Node > clone(bool keepTemplateName) const = 0; 47 48 virtual NodeMap & getMembers(); 49 50 virtual rtl::OUString getTemplateName() const; 51 52 virtual void setMandatory(int layer); 53 54 virtual int getMandatory() const; 55 56 void setLayer(int layer); 57 58 int getLayer() const; 59 60 void setFinalized(int layer); 61 62 int getFinalized() const; 63 64 rtl::Reference< Node > getMember(rtl::OUString const & name); 65 66 protected: 67 explicit Node(int layer); 68 69 Node(const Node & other); 70 71 virtual ~Node(); 72 73 virtual void clear(); 74 75 int layer_; 76 int finalized_; 77 }; 78 79 } 80 81 #endif 82