passing parameter into java action

0
my task is gretest of three  numbers ,i am done my task  with java action to object pass into the domain model entity. for example following program Integer a=Big.geta(this.getContext());         Integer b=Big.getb(this.getContext());         Integer c=Big.getc(this.getContext());         String Biggest_One=Big.getBiggest_One(this.getContext());         if(a>b && a>c) {             Biggest_One="a";             return Biggest_One.toString();         }         else if(b>a && b>c) {             Biggest_One="b";             return Biggest_One.toString();         }         else {             Biggest_One="c";             return Biggest_One.toString();         } then my another task is pass the object not in the domain model entity ,parameter pass into eclipse program.so how to do?
asked
1 answers
6

Hi Muthu,

Open your java action in mendix, you can find parameters and options to add that.

 

This could be helpful https://m.youtube.com/watch?v=3HPy7M-iQZI 

 

Thanks.

 

answered