a:9:{s:9:"#provides";s:16:"dijit._Contained";s:9:"#resource";s:13:"_Contained.js";s:16:"dijit._Contained";a:3:{s:4:"type";s:8:"Function";s:9:"classlike";b:1;s:7:"summary";s:0:"";}s:26:"dijit._Contained.getParent";a:4:{s:9:"prototype";s:16:"dijit._Contained";s:4:"type";s:8:"Function";s:6:"source";s:245:" for(var p=this.domNode.parentNode; p; p=p.parentNode){ var id = p.getAttribute && p.getAttribute("widgetId"); if(id){ var parent = dijit.byId(id); return parent.isContainer ? parent : null; } } return null;";s:7:"summary";s:89:"Returns the parent widget of this widget, assuming the parent implements dijit._Container";}s:28:"dijit._Contained._getSibling";a:8:{s:9:"prototype";s:16:"dijit._Contained";s:4:"type";s:8:"Function";s:10:"parameters";a:1:{s:5:"which";a:2:{s:4:"type";s:6:"Either";s:7:"summary";s:40:""next" or "previous"";}}s:6:"source";s:220:" var node = this.domNode; do{ node = node[which+"Sibling"]; }while(node && node.nodeType != 1); if(!node){ return null; } // null var id = node.getAttribute("widgetId"); return dijit.byId(id);";s:7:"summary";s:32:"Returns next or previous sibling";s:4:"tags";s:7:"private";s:7:"returns";s:4:"null";s:7:"private";b:1;}s:35:"dijit._Contained.getPreviousSibling";a:5:{s:9:"prototype";s:16:"dijit._Contained";s:4:"type";s:8:"Function";s:6:"source";s:49:" return this._getSibling("previous"); // Mixed";s:7:"summary";s:122:"Returns null if this is the first child of the parent, otherwise returns the next element sibling to the "left".";s:7:"returns";s:5:"Mixed";}s:31:"dijit._Contained.getNextSibling";a:5:{s:9:"prototype";s:16:"dijit._Contained";s:4:"type";s:8:"Function";s:6:"source";s:45:" return this._getSibling("next"); // Mixed";s:7:"summary";s:122:"Returns null if this is the last child of the parent, otherwise returns the next element sibling to the "right".";s:7:"returns";s:5:"Mixed";}s:33:"dijit._Contained.getIndexInParent";a:5:{s:9:"prototype";s:16:"dijit._Contained";s:4:"type";s:8:"Function";s:6:"source";s:135:" var p = this.getParent(); if(!p || !p.getIndexOfChild){ return -1; // int } return p.getIndexOfChild(this); // int";s:7:"summary";s:148:"Returns the index of this widget within its container parent. It returns -1 if the parent does not exist, or if the parent is not a dijit._Container";s:7:"returns";s:3:"int";}s:5:"dijit";a:2:{s:4:"type";s:6:"Object";s:7:"summary";s:0:"";}}