Posts

Showing posts from August, 2016

ADFUTIL Class

ADF Util Class This class is very much useful and from here and there I copy most of the methods and use almost in all the UI projects.  I am adding this to my blog to have a reference so that we need not to search all the places. Create a java class in your ADF UI project name ADFUtil and then copy the below content.  This class have some very important methods   1.  saveAndContinue :-   This method save the current frame and allow you to continue working on the frame.  2. evaluvateEL:-      This method used to get the value of the, el expression, like the employee name or any other value which is there in the page. 3. ExecuteEL     This is to execute the a method, with or without parameters. 4. SetEL    This to set the value of the El-expression. ===================== Class Starts ===================== import java.util.Map; import javax.el.ELContext; import javax.el.ExpressionFactory; import javax.el.MethodExpression; import javax.el.Va