Open-Lowcode icon indicating copy to clipboard operation
Open-Lowcode copied to clipboard

Action output argument should not be called "Action"

Open nicolasdemauroy opened this issue 4 years ago • 0 comments

It generates compile error by having to getActionRef methods. ACTION should be forbidden as name of an action input or output argument.

	public ActionRef getActionRef() {
		return new ActionRef();
	}

	public SActionOutputDataRef<TextDataEltType> getActionRef() {
		return ActionExecution.getActionOutputDataRef("ACTION",new TextDataEltType(),1);
	}

nicolasdemauroy avatar Jan 27 '21 16:01 nicolasdemauroy