cancel
Showing results for 
Search instead for 
Did you mean: 

how to use iprivate<comp>

Former Member
0 Kudos

hi

while creating an element we some times use Iprivate<compname>,Iprivate<viewname>.and my question is in which scenario we use iprivate<compname>,Iprivate<viewname>.can u explain clearly

thanks

kishore

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

IPrivate are usually for private instance like View controllers. When ever you are using context of view controller in implementation of view controller, or any similar instance, we will use iprivate. Component controller are with public classes and ther we use Ipublic.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Iprivate<viewname>.

is used when you are accessing a context attribute that is part of the view controller

iprivate<compname>

is used when you are accessing a context attribute that is part of the component controller.

Inside webdynpro for java explains this in detail.

Regards

Ayyapparaj

Former Member
0 Kudos

thanku ayyaparaj