Java Error: incompatible types: boolean cannot be converted to CAP#1

0
error: incompatible types: boolean cannot be converted to CAP#1     [javac]                 this.Parameter.getMember(getContext(), "BooleanAttribute").setValue(getContext(), true);   how do I create a MendixBoolean so I can use it to set the value for a boolean attribute?
asked
1 answers
0

It is easier

this.Parameter.setValue(getContext(), "BooleanAttribute" , true)

 

You can always peek into the proxies that show a lot of these assignments.

answered