From b8932e8304ed077912949890c3ec47a087be7ddd Mon Sep 17 00:00:00 2001 From: Lvbo163 Date: Wed, 6 Sep 2017 17:31:15 +0800 Subject: paramters can quote input parameter of start event rest task input parameters can quote input parameters of start event Issue-ID: SDC-122 Change-Id: I0cda0f1967514ac90e377b2f054ddf2cef011694 Signed-off-by: Lvbo163 --- .../src/app/model/plan-treeview-item.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 sdc-workflow-designer-ui/src/app/model/plan-treeview-item.ts (limited to 'sdc-workflow-designer-ui/src/app/model/plan-treeview-item.ts') diff --git a/sdc-workflow-designer-ui/src/app/model/plan-treeview-item.ts b/sdc-workflow-designer-ui/src/app/model/plan-treeview-item.ts new file mode 100644 index 00000000..a1d98500 --- /dev/null +++ b/sdc-workflow-designer-ui/src/app/model/plan-treeview-item.ts @@ -0,0 +1,19 @@ +/** + * Copyright (c) 2017 ZTE Corporation. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * and the Apache License 2.0 which both accompany this distribution, + * and are available at http://www.eclipse.org/legal/epl-v10.html + * and http://www.apache.org/licenses/LICENSE-2.0 + * + * Contributors: + * ZTE - initial API and implementation and/or initial documentation + */ + +export class PlanTreeviewItem { + constructor(public name: string, + public value: string, + public children: PlanTreeviewItem[], + public canSelect?: boolean) { + } +} -- cgit