X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fbuilder%2Ftree-node.h;h=c63bf1fdbed54943f070f8b74899b3a1b02bb212;hb=14208a1e7602b4c0f068df3514ddfcfcb43f5512;hp=3e47aea2116d6744de8fe790830d5885212390f3;hpb=9d09b345fbdef7a0532f5b45ffe65754f87258c6;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/devel-api/builder/tree-node.h b/dali-toolkit/devel-api/builder/tree-node.h index 3e47aea..c63bf1f 100644 --- a/dali-toolkit/devel-api/builder/tree-node.h +++ b/dali-toolkit/devel-api/builder/tree-node.h @@ -2,7 +2,7 @@ #define __DALI_SCRIPT_TREE_NODE_H__ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -182,13 +182,20 @@ public: bool HasSubstitution() const; /* - * Gets a child of the node - * @param name The name of the child + * Gets a child of the node (using case sensitive matching) + * @param name The name of the child. * @return The child if found, else NULL */ const TreeNode* GetChild(const std::string& name) const; /* + * Gets a child of the node (using case insensitive matching) + * @param name The name of the child in lower case + * @return The child if found, else NULL + */ + const TreeNode* GetChildIgnoreCase(const std::string& name) const; + + /* * Recursively search for a child of the node * @param name The name of the child * @return The child if found, else NULL