I would like to ask about Transient object.
Posted: Fri Aug 07, 2009 2:49 pm
by m&m >> Sat, 31 Jan 2004 19:59:35 GMT
Hi guys, I just start learning Jade . I got stuck when try to access Transient object. suppoase I create class named "tempValue"(public-real-transient) which has 2 attributes named "valX" and "valY" both are String.
begin
vars
crtempValue : tempValue;
create addJovcUser transient;
crtempValue .valX :="1";
crtempValue .valY :="5";
write ( crtempValue.valX & crtempValue.valY);
end;
I would like to how can I retrive the data stored in crtempValue.valX and crtempValue.valY ..
Hi guys, I just start learning Jade . I got stuck when try to access Transient object. suppoase I create class named "tempValue"(public-real-transient) which has 2 attributes named "valX" and "valY" both are String.
begin
vars
crtempValue : tempValue;
create addJovcUser transient;
crtempValue .valX :="1";
crtempValue .valY :="5";
write ( crtempValue.valX & crtempValue.valY);
end;
I would like to how can I retrive the data stored in crtempValue.valX and crtempValue.valY ..