Lines Matching refs:nodeParam
674 private nodeParam: {
727 this.nodeParam = node.data;
863 return this.nodeParam;
872 return this.nodeParam.isFolder;
2286 let nodeParam = frontNodeInfoItem.getNodeInfoData();
2331 dragNodeParam.push({parentId: parentNodeId, currentId: currentNodeId, data: nodeParam});
2345 nodeParam = nodeInfo.getNodeInfoData();
2347 … dragNodeParam.push({parentId: parentNodeId, currentId: currentNodeId, data: nodeParam});
3250 public addNodeParam(nodeParam: NodeParam): TreeController {
3251 if (nodeParam.primaryTitle != null &&
3252 !this.listNodeUtils.checkMainTitleIsValid(nodeParam.primaryTitle)) {
3257 if (nodeParam.primaryTitle == null && nodeParam.icon == null) {
3262 if (nodeParam.currentNodeId === this.ROOT_NODE_ID || nodeParam.currentNodeId === null) {
3266 this.nodeIdList.push(nodeParam.currentNodeId);
3267 this.listNodeUtils.addNode(nodeParam.parentNodeId, nodeParam.currentNodeId, nodeParam);
3279 * @param nodeParam Configuration information of the newly added node.
3285 public addNode(nodeParam?: NodeParam): TreeController {
3286 if (nodeParam == null) {
3289 if (nodeParam.primaryTitle != null &&
3290 !this.listNodeUtils.checkMainTitleIsValid(nodeParam.primaryTitle)) {
3295 if (nodeParam.primaryTitle == null && nodeParam.icon == null) {
3300 if (nodeParam.currentNodeId === this.ROOT_NODE_ID || nodeParam.currentNodeId === null) {
3304 this.nodeIdList.push(nodeParam.currentNodeId);
3305 this.listNodeUtils.addNode(nodeParam.parentNodeId, nodeParam.currentNodeId, nodeParam);