How to dislay a frame when i clck on the node or leaf on the JTree

Hi All,
Iam doing project on swing. In that iam doing with JTree. The Jtree is displaying on the left side of the splitpane .My problem is if i click on the nodes or leaf in the JTree one panel should be open in on the right side of the spltpane. Iam pasting the code.please can any body knows the solution please send me.
regards
sonali
import java.awt.*;
import javax.swing.*;
import javax.swing.BorderFactory;
import javax.swing.border.*;
import java.awt.event.*;
import javax.swing.tree.*;
import javax.swing.JTree;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.event.TreeSelectionListener;
import javax.swing.event.TreeSelectionEvent;
import javax.swing.tree.TreeSelectionModel;
import javax.swing.tree.DefaultTreeCellRenderer;
import java.net.URL;
import javax.swing.*;
import java.io.IOException;
import javax.swing.JEditorPane;
import javax.swing.JScrollPane;
import javax.swing.JSplitPane;
import javax.swing.JFrame;
import Test.Test1;
public class JFrame1 extends javax.swing.JFrame {
JScrollPane sp;
JPanel topPanel;
JPanel leftPanel;
JPanel bottomPanel;
JPanel rightPanel;
Border b ;
JTree tree;
DefaultTreeModel treeModel;
     public JFrame1(){
          getContentPane().setLayout(null);
          setSize(405,305);
          setVisible(false);
          JPanel1.setLayout(null);
          getContentPane().add(JPanel1);
          JPanel1.setLayout(new GridLayout(1, 1));
          JPanel1.setBounds(0,0,405,305);
          JPanel1.add(JSplitPane1);
          JSplitPane1.setBounds(0,5,405,305);
          JSplitPane1.setContinuousLayout(false);
          topPanel = new JPanel();
          leftPanel = new JPanel();
          bottomPanel = new JPanel();
          topPanel.setLayout(new FlowLayout());
          leftPanel.setLayout(null);
          b = new EtchedBorder();
          leftPanel.setBorder(b);
          leftPanel.setBounds(0,0,300,305);
          bottomPanel.setLayout(new FlowLayout());
          rightPanel = new JPanel();
          rightPanel.setBounds(108, 0, 300, 305);
          JSplitPane1.setRightComponent(rightPanel);
          JSplitPane1.setLeftComponent(leftPanel);
          rightPanel.setLayout(null);
          topPanel.setBounds(0,0,305,25);
          b = new EtchedBorder(0);
          topPanel.setBorder(b);
          bottomPanel.setBounds(0,26,300,280);
          b = new BevelBorder(1, Color.black,Color.black);
          bottomPanel.setBorder(b);
          rightPanel.add(topPanel);
          rightPanel.add(bottomPanel);
          JSplitPane1.setDividerLocation(120);
          DefaultMutableTreeNode root = new DefaultMutableTreeNode("Root");
DefaultMutableTreeNode subroot = new DefaultMutableTreeNode("SubRoot");
DefaultMutableTreeNode leaf1 = new DefaultMutableTreeNode("Leaf 1");
DefaultMutableTreeNode leaf2 = new DefaultMutableTreeNode("Leaf 2");
DefaultMutableTreeNode leaf3 = new DefaultMutableTreeNode("Leaf 3");
DefaultMutableTreeNode subroot1 = new DefaultMutableTreeNode("SubRoot1");
DefaultMutableTreeNode leaf11 = new DefaultMutableTreeNode("Leaf 11");
DefaultMutableTreeNode leaf21 = new DefaultMutableTreeNode("Leaf 21");
DefaultMutableTreeNode leaf31 = new DefaultMutableTreeNode("Leaf 31 skfjdsf sfjfdsl fslfkjdsfl sflkjaflksdfdslfjds lfsdlkfjdslk sdsdlkfjdsla fflkdasjfdslkjal");
DefaultMutableTreeNode subroot2 = new DefaultMutableTreeNode("SubRoot2");
DefaultMutableTreeNode leaf12 = new DefaultMutableTreeNode("Leaf 12");
DefaultMutableTreeNode leaf22 = new DefaultMutableTreeNode("Leaf 22");
DefaultMutableTreeNode leaf32 = new DefaultMutableTreeNode("Leaf 32");
treeModel = new DefaultTreeModel(root);
tree = new JTree(treeModel);
treeModel.insertNodeInto(subroot, root, 0);
treeModel.insertNodeInto(leaf1, subroot, 0);
treeModel.insertNodeInto(leaf2, root, 1);
treeModel.insertNodeInto(leaf3, root, 2);
treeModel.insertNodeInto(subroot1, root, 3);
treeModel.insertNodeInto(leaf11, subroot1, 0);
treeModel.insertNodeInto(leaf21, subroot1, 1);
treeModel.insertNodeInto(leaf31, subroot1, 2);
treeModel.insertNodeInto(subroot2, root, 3);
treeModel.insertNodeInto(leaf12, subroot2, 0);
treeModel.insertNodeInto(leaf22, subroot2, 1);
treeModel.insertNodeInto(leaf32, subroot2, 2);
sp = new JScrollPane();
sp.setBounds(0,0,300,305);
sp.getViewport().add(tree);
sp.setViewportBorder(BorderFactory.createRaisedBevelBorder());
leftPanel.add(sp,BorderLayout.CENTER);
//          SymPropertyChange lSymPropertyChange = new SymPropertyChange();
//          JSplitPane1.addPropertyChangeListener(lSymPropertyChange);
          SymWindow aSymWindow = new SymWindow();
          this.addWindowListener(aSymWindow);
          SymComponent aSymComponent = new SymComponent();
          this.addComponentListener(aSymComponent);
     public JFrame1(String sTitle)
          this();
          setTitle(sTitle);
     public void setVisible(boolean b)
          if (b)
               setLocation(50, 50);
          super.setVisible(b);
     static public void main(String args[])
          (new JFrame1()).setVisible(true);
     public void addNotify()
          Dimension size = getSize();
          super.addNotify();
          if (frameSizeAdjusted)
               return;
          frameSizeAdjusted = false;
          Insets insets = getInsets();
          javax.swing.JMenuBar menuBar = getRootPane().getJMenuBar();
          int menuBarHeight = 0;
          if (menuBar != null)
               menuBarHeight = menuBar.getPreferredSize().height;
          setSize(insets.left + insets.right + size.width, insets.top + insets.bottom + size.height + menuBarHeight);
     boolean frameSizeAdjusted = false;
     javax.swing.JPanel JPanel1 = new javax.swing.JPanel();
     javax.swing.JSplitPane JSplitPane1 = new javax.swing.JSplitPane();
     /*class SymPropertyChange implements java.beans.PropertyChangeListener{
          public void propertyChange(java.beans.PropertyChangeEvent event){
               Object object = event.getSource();
               if (object == JSplitPane1)
                    JSplitPane1_propertyChange(event);
/*     void JSplitPane1_propertyChange(java.beans.PropertyChangeEvent event){
     System.out.println("!");
     sp.setSize((int)JSplitPane1.getLeftComponent().getBounds().getWidth()-2,(int)JSplitPane1.getLeftComponent().getBounds().getHeight()-2 );
     sp.repaint();
     tree.repaint();
     class SymWindow extends java.awt.event.WindowAdapter{
          public void windowActivated(java.awt.event.WindowEvent event){
               Object object = event.getSource();
               if (object == JFrame1.this)
                    JFrame1_windowActivated(event);
          public void windowIconified(java.awt.event.WindowEvent event){
               Object object = event.getSource();
               if (object == JFrame1.this)
                    JFrame1_windowIconified(event);
     void JFrame1_windowIconified(java.awt.event.WindowEvent event){
     void JFrame1_windowActivated(java.awt.event.WindowEvent event){
     class SymComponent extends java.awt.event.ComponentAdapter{
          public void componentShown(java.awt.event.ComponentEvent event){
               Object object = event.getSource();
               if (object == JFrame1.this)
                    JFrame1_componentShown(event);
          public void componentResized(java.awt.event.ComponentEvent event){
               Object object = event.getSource();
               if (object == JFrame1.this)
                    JFrame1_componentResized(event);
     void JFrame1_componentResized(java.awt.event.ComponentEvent event){
     System.out.println("!!");
          JPanel1.setSize(this.getContentPane().getMaximumSize());
          JSplitPane1.setSize((int)JPanel1.getMaximumSize().getWidth()-5,(int)JPanel1.getMaximumSize().getHeight()-5 );
          topPanel.setBounds(0, 0, rightPanel.getWidth()-3, 25);
          bottomPanel.setBounds(0,26,rightPanel.getWidth()-3,rightPanel.getHeight()-28);
          sp.setSize((int)leftPanel.getMaximumSize().getWidth(),(int)leftPanel.getMaximumSize().getHeight());
     sp.setAutoscrolls(true);
     //sp.setSize((int)JSplitPane1.getLeftComponent().getBounds().getWidth()-2,(int)JSplitPane1.getLeftComponent().getBounds().getHeight()-2 );
     sp.repaint();
     //sp.setSize((int)leftPanel.getSize().getWidth(),(int)leftPanel.getSize().getHeight() );
     void JFrame1_componentShown(java.awt.event.ComponentEvent event){
     System.out.println("!!!");
          JPanel1.setSize(this.getContentPane().getMaximumSize());
          JSplitPane1.setSize((int)JPanel1.getMaximumSize().getWidth()-5,(int)JPanel1.getMaximumSize().getHeight()-5 );
          topPanel.setBounds(0, 0, rightPanel.getWidth()-3, 25);
     sp.setSize((int)JSplitPane1.getLeftComponent().getBounds().getWidth()-2,(int)JSplitPane1.getLeftComponent().getBounds().getHeight()-2 );
     sp.repaint();
          bottomPanel.setBounds(0,26,rightPanel.getWidth()-3,rightPanel.getHeight()-28);
}

hi sculz,
i develped the tree, and tree selection listener also the 4 th point i didnt able to do . here is the code belo what i did.
iam not able to add the JSplit pane also.
import java.io.*;
import java.util.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.tree.*;
import javax.swing.event.*;
public class Tree08 extends JFrame{
Hashtable theHashtable = new Hashtable();
int frameWidth = 300;
int frameHeight = 305;
int numberRows = 19;
JTree tree;
JPanel treePanel;
String plafClassName =
"com.sun.java.swing.plaf.motif.MotifLookAndFeel";
For future reference, the three plaf implementations
are:
com.sun.java.swing.plaf.metal.MetalLookAndFeel
com.sun.java.swing.plaf.motif.MotifLookAndFeel
com.sun.java.swing.plaf.windows.WindowsLookAndFeel
JLabel display;
public static void main(String args[]) {
new Tree08();
public Tree08 () {
theHashtable.put("Cabbage","Good in slaw");
theHashtable.put("Squash","The yellow variety");
theHashtable.put("Onion","Not too hot");
theHashtable.put("Squirrel","Likes to store nuts");
theHashtable.put("Rabbit","Runs fast");
theHashtable.put("Fox","Crazy like a ...");
theHashtable.put("Horse","Fun to ride");
theHashtable.put("Pig","Lives in mud");
theHashtable.put("Cow","Gives us milk");
theHashtable.put("Peach","From Georgia");
theHashtable.put("Grape","Saueeze into wine");
theHashtable.put("Apple","Red delicious");
theHashtable.put("Orange","Very juicy");
DefaultMutableTreeNode[] theTreeNodes = new
DefaultMutableTreeNode[numberRows];
theTreeNodes[0] = new DefaultMutableTreeNode("Sample
Tree");
theTreeNodes[1] = new
DefaultMutableTreeNode("Vegetables");
theTreeNodes[2] = new
DefaultMutableTreeNode("Cabbage");
theTreeNodes[3] = new
DefaultMutableTreeNode("Squash");
theTreeNodes[4] = new
DefaultMutableTreeNode("Onion");
theTreeNodes[5] = new
DefaultMutableTreeNode("Animals");
theTreeNodes[6] = new
DefaultMutableTreeNode("Forrest");
theTreeNodes[7] = new
DefaultMutableTreeNode("Squirrel");
theTreeNodes[8] = new
DefaultMutableTreeNode("Rabbit");
theTreeNodes[9] = new DefaultMutableTreeNode("Fox");
theTreeNodes[10] = new
DefaultMutableTreeNode("Farm");
theTreeNodes[11] = new
DefaultMutableTreeNode("Horse");
theTreeNodes[12] = new DefaultMutableTreeNode("Pig");
theTreeNodes[13] = new DefaultMutableTreeNode("Cow");
theTreeNodes[14] = new
DefaultMutableTreeNode("Fruit");
theTreeNodes[15] = new
DefaultMutableTreeNode("Peach");
theTreeNodes[16] = new
DefaultMutableTreeNode("Grape");
theTreeNodes[17] = new
DefaultMutableTreeNode("Apple");
theTreeNodes[18] = new
DefaultMutableTreeNode("Orange");
theTreeNodes[0].add(theTreeNodes[1]);
theTreeNodes[1].add(theTreeNodes[2]);
theTreeNodes[1].add(theTreeNodes[3]);
theTreeNodes[1].add(theTreeNodes[4]);
theTreeNodes[0].add(theTreeNodes[5]);
theTreeNodes[5].add(theTreeNodes[6]);
theTreeNodes[6].add(theTreeNodes[7]);
theTreeNodes[6].add(theTreeNodes[8]);
theTreeNodes[6].add(theTreeNodes[9]);
theTreeNodes[5].add(theTreeNodes[10]);
theTreeNodes[10].add(theTreeNodes[11]);
theTreeNodes[10].add(theTreeNodes[12]);
theTreeNodes[10].add(theTreeNodes[13]);
theTreeNodes[0].add(theTreeNodes[14]);
theTreeNodes[14].add(theTreeNodes[15]);
theTreeNodes[14].add(theTreeNodes[16]);
theTreeNodes[14].add(theTreeNodes[17]);
theTreeNodes[14].add(theTreeNodes[18]);
treePanel = new TreePanel(theTreeNodes[0]);
tree.addTreeSelectionListener(new MyTreeListener());
Container content = getContentPane();
content.add(treePanel,BorderLayout.CENTER);
display = new JLabel("Display Selection Here");
content.add(display,BorderLayout.SOUTH);
setSize(frameWidth, frameHeight);
setTitle("Copyright 1998, R.G.Baldwin");
setVisible(true);
this.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);}
class MyTreeListener implements TreeSelectionListener{
public void valueChanged(TreeSelectionEvent e) {
DefaultMutableTreeNode theNode =
(DefaultMutableTreeNode)
(e.getPath().getLastPathComponent());
if (theNode.isLeaf()) {
display.setText((String)theHashtable.get(
theNode.getUserObject()));
class TreePanel extends JPanel {
public TreePanel(TreeNode root){
setLayout(new BorderLayout());
tree = new JTree(root);
JScrollPane sp = new JScrollPane(tree);
add(sp, BorderLayout.CENTER);
try{
UIManager.setLookAndFeel(plafClassName);
}catch(Exception ex){System.out.println(ex);}
SwingUtilities.updateComponentTreeUI(this);
for(int cnt = 0; cnt < numberRows; cnt++){
tree.expandRow(cnt);
regards
sonali

Similar Messages

  • I am with a university and i purchased the adobe photoshop elements for a faculty member of mine, how can he download it when it is in my name but he is the one needing it?

    i am with a university and i purchased the adobe photoshop elements for a faculty member of mine, how can he download it when it is in my name but he is the one needing it?

    There is nothing to prevent him from downloading and installing the trial version (Adobe - Download free trial version Adobe Photoshop Elements 12 | Adobe).  At the point all you need to do is provide him with the serial number so that he can activate it.  If the intent is that he be the owner of the software then you might want to see about transfering the license...
    Transfer an Adobe product license

  • How to Find the node or leaf node selected in Tree UI element:

    Hi All,
    I have a tree structure with three level design. We have a button, which will perform some operation on the specific node or leaf node on every level.
    When we select any node or leaf node, we have action Onction getting called.  But what we want is that, after we select the node or leaf node,  we press a button below the tree design and perform some operation on the node selected.
    But how to get information that on Application , which node or leaf node has been slected ?
    Thanks
    PG

    Hi,
    Found the solution.
    Juts keep on reading all the nodes, system gives the complete path of the tree by using Lead selection and then we can use this path to peform the update operation on tree structure.
    Thanks alot for the hint.
    Regards
    PG

  • How do i find out the node number/name from the weblogic API  ?

    Hi
              I have written an application component that writes to a file. When clustered, i need to make the filename correspond to the managed server / node # inside the cluster, as i cannot afford to let each jvm hence each node write to the same file. Therefore on startup i would like to interrogate the weblogic server and ask it the node # the application is deployed in, so that it can create a unique file name - BASED upon the node number.
              Any ideas anyone ?
              Thanks
              James

    You may want to use WebLogic JMX api to do that. Using MBeanHome, you will get the name of the server on which your application gets invoked.
              Regards,
              Vishwas

  • Have macbook pro referb how do I set up when I log on that yahoo finance will be the first page that loads

    How do I set up so yahoo finance is the first page that loads when I log on?

    Depends on which browser you are using - with Safari, click on Safari > Preferences > General and go to 'homepage'. Input the URL address of the site you want (in your case, go to Yahoo Finance, copy the address and paste it in that line).

  • I want to delete my mac account and replace it with my gmail account. I know how to do this but when I click and open up mail I get the spinning wheel and have to force quit mail.

    I want to disable my mac.com mail, I know how to delete it but I cannot get into mail to do this, whenever I click on mail, or mail in system preferences to open it I get the spinning wheel and have to force quit. I am running a Macbook 10.7.5
    Thanks,
    Edward.

    You can't merge Apple IDs.  You also can't cancel (delete) and existing ID, you can only choose to stop using it.
    If your old ID was compromised and you can no longer access it, you'll have to contact Apple for assistance.  Go to https://expresslane.apple.com ; click 'See all products and services' at the bottom of the page. In the next page click 'More Products and Services, then 'Apple ID'. In the next page select 'Other Apple ID Topics' then then 'Apple ID account Security’.

  • How do I disable charging when I connect my ipad to my pc using the usb cable? I don't want to kill my ipad's battery by charging too often.

    As the question. Thanks guys.

    I believe my pc'c motherboard has a special feature that has extra power on the usb ports. However, I couldn't find a way to turn this off.
    My motherboard is http://www.tigerdirect.com/applications/SearchTools/item-details.asp?EdpNo=73430 83

  • Linking frames to other frames when a button press

    Hi every one new to Java in my 2 year at University College Chester,
    4 week using Java to build an application, how do you link to another frame when a Jbutton is pressed sending full control to the new frame, i want to leave the old frame open as when i close the new frame i wish to return to the old frame! and would i use system.exit(0); to close the new frame as i think this closes the application altogether.
    Any help Please!
    Thank inadvance for help!

    Just create a new JFrame and show it on button usage, maybe additionally assign the focus to one of it's components. Set the JFrames default close operation to DISPOSE_ON_CLOSE and you should be fine.

  • How to disable autostart (application) when managed server restart ?

    Hi Ppl,
    How to disable autostart (application) when managed server restart ?
    I want some of the applications to remain not started. In WebSPhere, we have an option disable auto start for applications.
    I don't find in weblogic.
    Thanks

    Hi,
    I agree with Faisal. When you shutdown your WL server while the application is running, the thing is when you start your server again, it would automatically start the application with it. Now if the application was down when you shutdown the server, it _the application_ won't start with the server.
    So it depends on the application last state, when you start your server.
    Regards,
    Mohab

  • How to make it selected when clicked and open popup

    Hi,
    I 've a form in the parent page with many form elements.
    I've 2 radio buttons with values "Yes" and "No". I am opening a modal popup when clicked on "Yes" radio button. The modal popup is opening fine.
    But when I click "Yes", it' s not selected. After modal popup is closed, when I return to parent page, the option "Yes" is still not selected.
    How to make it selected when clicked and open popup?

    Perhaps try moving the application to your preferred desktop and then right-click it's dock icon > options > Assign to This Desktop.

  • How do I fix  it when Facetime freezes,shakes, then turns to green?

    How do I fix  it when Facetime freezes,shakes, then turns to green?

    The memory that is low is the processor memory, not the overall storage space.  Next time, before you go to that site, double tap the home button to see the task bar.  You will see the list of apps siting in the recently used list.  Most of them are not doing anything, but some of them are using up memory.  Touch and hold any one of them until they jiggle, then close them all off by touching the minus sign.
    Do that every so often to help the pad use it's memory wisely.
    Some apps, and browser pages use a lot of memory, and do not give it back easily, causing what sis happening to you.
    You can also get a similar result by rebooting.  Press and hold the home and sleep buttons until the apple logo appears, ignore the red slider.

  • How do I lock safesearch when using BING

    how do I lock safesearch when using BING search engine

    I assume you're using the "Content Aware" option for the Spot Healing brush.  It can be a maddeningly stupid option -- there's no telling from how far away it will pull the replacement pixels and will leave streaks that can be very difficult to remove.
    It would be best for you to include a sample image that's giving you the problem so we can suggest the best way to attack it.
    In general, the "Content Aware" option works best when you use a very small brush size.  That pulls in pixels closer to the area you want to heal.  If you get streaks, sometimes you can use the Spot Healing brush to get rid of them by going over the area in a perpendicular direction to the streaks.
    Ken

  • When I click on the safari icon, i get the message service temporarily unavilable. IIt has been out for over an hour.

    For the laast hours, I hve been getting the message "service unavailable" when I clck safari or aol. WHat is the problem and how do I correct it?

    See these articles for possible solutions:
    *[[Firefox is already running but is not responding]]
    *http://kb.mozillazine.org/Profile_in_use

  • When Firefox updated, my dad could no longer use the browser as it kept saying that is it working off line and to uncheck that option. Where do we find the option to uncheck?

    My 82 year old dad downloaded your latest update and he installed it. He used default installation as he does not know how to do custom. When he started up Firefox, it came up with the dialogue that Firefox is off line and that he was suppose to uncheck work off line Box. i looked through my Firefox and I cannot figure out where that box is. He is 150 miles away from me so I can't really look at his computer.

    Use "Alt" key to show menu bar temporarily the on the File menu uncheck "work offline".
    You don't always get a message that tells you that you are off-line so even though I hardly ever need it I do install the following because of it's connected/disconnected icons
    * '''Work Offline''' :: Add-ons for Firefox<br>https://addons.mozilla.org/firefox/addon/work-offline/
    You can make Firefox 4.0.1 look like Firefox 3.6.17, see numbered items 1-10 in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 look like 3.6)]

  • Endless loop when clicking on ADF TreeTable Node with multiple Parents

    Using Jdev 11.1.2.2.0.
    I have been using the ADF Tree Table to render a parent/child relationship table(using EO's and VO's); this table allows a child node to have many parents. I've followed the example from Code Corner #32 "How to create a tree table from a single View Object and how to access selected rows" but my example is a little different. I have a Hierarchy Table that lists it's TopNode and then I have a Relationship (parent/child) table that includes the relationships for that hierarchy. I've created the ViewLinks between the Hierarchy VO and the Relationship VO and everything shows up fine in the ADF BC Tester.
    The tables look like the following (Note: the node 5 has multiple parents (4&3)
    Hierarchy Table:
    ID NAME TOPNODEID
    1 HIER1 1
    PARENTCHILDTABLE
    PARENT_ID CHILD_ID
    1 2
    1 3
    2 4
    4 5
    3 5
    -1 1
    The View Links I have setup are the (TopNodeID to ChildID... 1 to 1) as well as the (Child_Id to Parent_ID.. 1 to *).
    I added a tree table to a jsf page; I setup the bindings correctly with the Hierarchy vo as the top level object and the relationship VO as the parent/child (self referencing) table.
    However, when I start expanding some of the nodes at runtime in the JSF page and when I click on the child 5 an hour glass appears and it seems to be in an endless loop. Has anyone seen this before or anyone know why this gets into an endless loop.
    Edited by: user623583 on Aug 21, 2012 7:26 AM

    No exceptions occur but I was able to turn on logging (oracle.adf*) and this shows up. This is only a portion of what gets logged as it seems to log the same thing over and over while in the endless loop. The loop is intermittent too; it doesn't occur all the time. It seems to occur when I click on one of the duplicate nodes OR try to expand one of the duplicate nodes and/or one of their parents.
    <UIXRegion> <processEvent> RegionModel associated with component client ID: pt1:pt_region11
    <UIXRegion> <processEvent> RegionModel associated with component client ID: pt1:pt_region12
    <UIXRegion> <processEvent> RegionModel associated with component client ID: pt1:pt_region13
    <UIXRegion> <processEvent> RegionModel associated with component client ID: pt1:pt_region14
    <UIXInclude> <_tearDownIncludeContext> UIXInclude._tearDownIncludeContext() - Client ID: pt1
    <UIXPageTemplate> <_tearDownPageTemplateContext> UIXPageTemplate._tearDownPageTemplateContext()
    <UIXPageTemplate> <_tearDownPageTemplateContext> UIXPageTemplate._tearDownPageTemplateContext() - model var was being managed by the component.
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to oracle_epm_view_view1PageDef
    <UIXPageTemplate> <_setupPageTemplateContext> UIXPageTemplate._setupPageTemplateContext()
    <UIXInclude$ContextualFacesBeanWrapper> <getProperty> UIXInclude$ContextualFacesBeanWrapper.getProperty() - _inContext = false and key.getName() = value
    <UIXPageTemplate> <_setupPageTemplateContext> UIXPageTemplate._setupPageTemplateContext() - model var is being managed by the component.
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to ptb1
    <UIXInclude> <_setupIncludeContext> UIXInclude._setupIncludeContext() - Client ID: pt1
    <UIXInclude> <_tearDownIncludeContext> UIXInclude._tearDownIncludeContext() - Client ID: pt1
    <UIXPageTemplate> <_tearDownPageTemplateContext> UIXPageTemplate._tearDownPageTemplateContext()
    <UIXPageTemplate> <_tearDownPageTemplateContext> UIXPageTemplate._tearDownPageTemplateContext() - model var was being managed by the component.
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to oracle_epm_view_view1PageDef
    <UIXPageTemplate> <_setupPageTemplateContext> UIXPageTemplate._setupPageTemplateContext()
    <UIXInclude$ContextualFacesBeanWrapper> <getProperty> UIXInclude$ContextualFacesBeanWrapper.getProperty() - _inContext = false and key.getName() = value
    <UIXPageTemplate> <_setupPageTemplateContext> UIXPageTemplate._setupPageTemplateContext() - model var is being managed by the component.
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to ptb1
    <UIXInclude> <_setupIncludeContext> UIXInclude._setupIncludeContext() - Client ID: pt1
    <UIXInclude> <tearDownChildrenVisitingContext> UIXInclude.tearDownChildrenVisitingContext() - Client ID: pt1, called by oracle.adf.view.rich.component.fragment.UIXPageTemplate.tearDownChildrenVisitingContext at 275
    <UIXInclude> <_tearDownIncludeContext> UIXInclude._tearDownIncludeContext() - Client ID: pt1
    <UIXPageTemplate> <_tearDownPageTemplateContext> UIXPageTemplate._tearDownPageTemplateContext()
    <UIXPageTemplate> <_tearDownPageTemplateContext> UIXPageTemplate._tearDownPageTemplateContext() - model var was being managed by the component.
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to oracle_epm_view_view1PageDef
    <UIXPageTemplate> <_setupPageTemplateContext> UIXPageTemplate._setupPageTemplateContext()
    <UIXInclude$ContextualFacesBeanWrapper> <getProperty> UIXInclude$ContextualFacesBeanWrapper.getProperty() - _inContext = false and key.getName() = value
    <UIXPageTemplate> <_setupPageTemplateContext> UIXPageTemplate._setupPageTemplateContext() - model var is being managed by the component.
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to ptb1
    <UIXInclude> <setupChildrenVisitingContext> UIXInclude.setupChildrenVisitingContext() - Client ID: pt1, called by oracle.adf.view.rich.component.fragment.UIXPageTemplate.setupChildrenVisitingContext at 249
    <UIXInclude> <_setupIncludeContext> UIXInclude._setupIncludeContext() - Client ID: pt1
    <UIXInclude> <_tearDownIncludeContext> UIXInclude._tearDownIncludeContext() - Client ID: pt1
    <UIXPageTemplate> <_tearDownPageTemplateContext> UIXPageTemplate._tearDownPageTemplateContext()
    <UIXPageTemplate> <_tearDownPageTemplateContext> UIXPageTemplate._tearDownPageTemplateContext() - model var was being managed by the component.
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to oracle_epm_view_view1PageDef
    <UIXPageTemplate> <_setupPageTemplateContext> UIXPageTemplate._setupPageTemplateContext()
    <UIXInclude$ContextualFacesBeanWrapper> <getProperty> UIXInclude$ContextualFacesBeanWrapper.getProperty() - _inContext = false and key.getName() = value
    <UIXPageTemplate> <_setupPageTemplateContext> UIXPageTemplate._setupPageTemplateContext() - model var is being managed by the component.
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to ptb1
    <UIXInclude> <_setupIncludeContext> UIXInclude._setupIncludeContext() - Client ID: pt1
    <UIXInclude> <tearDownChildrenVisitingContext> UIXInclude.tearDownChildrenVisitingContext() - Client ID: pt1, called by oracle.adf.view.rich.component.fragment.UIXPageTemplate.tearDownChildrenVisitingContext at 275
    <UIXInclude> <_tearDownIncludeContext> UIXInclude._tearDownIncludeContext() - Client ID: pt1
    <UIXPageTemplate> <_tearDownPageTemplateContext> UIXPageTemplate._tearDownPageTemplateContext()
    <UIXPageTemplate> <_tearDownPageTemplateContext> UIXPageTemplate._tearDownPageTemplateContext() - model var was being managed by the component.
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to oracle_epm_view_view1PageDef
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to oracle_epm_view_view1PageDef
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to oracle_epm_view_view1PageDef
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <DCBindingContainer> <internalRefreshControl> Lifecycle:BindingContainer.refresh type:prepare for:oracle_epm_view_view1PageDef
    <DCBindingContainer> <internalRefreshControl> Lifecycle:BindingContainer.refresh type:prepare for:ptb1
    <ADFLogger> <begin> Region refresh
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <ADFLogger> <end> Region refresh
    <ADFLogger> <begin> Region refresh
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <ADFLogger> <end> Region refresh
    <ADFLogger> <begin> Region refresh
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <ADFLogger> <end> Region refresh
    <ADFLogger> <begin> Region refresh
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <ADFLogger> <end> Region refresh
    <ADFLogger> <begin> Region refresh
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <ADFLogger> <end> Region refresh
    <ADFLogger> <begin> Region refresh
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <ADFLogger> <end> Region refresh
    <ADFLogger> <begin> Region refresh
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <ADFLogger> <end> Region refresh
    <ADFLogger> <begin> Region refresh
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <ADFLogger> <end> Region refresh
    <ADFLogger> <begin> Region refresh
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <ADFLogger> <end> Region refresh
    <ADFLogger> <begin> Region refresh
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <ADFLogger> <end> Region refresh
    <ADFLogger> <begin> Region refresh
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <ADFLogger> <end> Region refresh
    <ADFLogger> <begin> Region refresh
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <ADFLogger> <end> Region refresh
    <ADFLogger> <begin> Region refresh
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <ADFLogger> <end> Region refresh
    <ADFLogger> <begin> Region refresh
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <ADFLogger> <end> Region refresh
    <ADFLogger> <begin> Region refresh
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <ADFLogger> <end> Region refresh
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to oracle_epm_view_view1PageDef
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to oracle_epm_view_view1PageDef
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <FacesPageLifecycle> <getToken> ADFc: State-token for 'oracle_epm_view_view1PageDef' has been restored and is not null.
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ServletADFContext> <findApplicationScopeMap> The applicationScope Map returned
    <ADFContext> <getADFFacesViewScopeMap> oracle.adf.view.rich.context.AdfFacesContext used to get ViewScope
    <FacesPageLifecycle> <getToken> ADFc: State-token for 'oracle_epm_view_view1PageDef' has been restored and is not null.
    <UIXInclude$ContextualFacesBeanWrapper> <getProperty> UIXInclude$ContextualFacesBeanWrapper.getProperty() - _inContext = false and key.getName() = rendered
    <UIXPageTemplate> <_setupPageTemplateContext> UIXPageTemplate._setupPageTemplateContext()
    <UIXInclude$ContextualFacesBeanWrapper> <getProperty> UIXInclude$ContextualFacesBeanWrapper.getProperty() - _inContext = false and key.getName() = value
    <UIXPageTemplate> <_setupPageTemplateContext> UIXPageTemplate._setupPageTemplateContext() - model var is being managed by the component.
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to ptb1
    <UIXInclude> <setupChildrenVisitingContext> UIXInclude.setupChildrenVisitingContext() - Client ID: pt1, called by oracle.adf.view.rich.component.fragment.UIXPageTemplate.setupChildrenVisitingContext at 249
    <UIXInclude> <_setupIncludeContext> UIXInclude._setupIncludeContext() - Client ID: pt1
    <UIXInclude$ContextualFacesBeanWrapper> <getProperty> UIXInclude$ContextualFacesBeanWrapper.getProperty() - _inContext = true and key.getName() = rendered
    <UIXInclude> <_tearDownIncludeContext> UIXInclude._tearDownIncludeContext() - Client ID: pt1
    <UIXPageTemplate> <_tearDownPageTemplateContext> UIXPageTemplate._tearDownPageTemplateContext()
    <UIXPageTemplate> <_tearDownPageTemplateContext> UIXPageTemplate._tearDownPageTemplateContext() - model var was being managed by the component.
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to oracle_epm_view_view1PageDef
    <UIXPageTemplate> <_setupPageTemplateContext> UIXPageTemplate._setupPageTemplateContext()
    <UIXInclude$ContextualFacesBeanWrapper> <getProperty> UIXInclude$ContextualFacesBeanWrapper.getProperty() - _inContext = false and key.getName() = value
    <UIXPageTemplate> <_setupPageTemplateContext> UIXPageTemplate._setupPageTemplateContext() - model var is being managed by the component.
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to ptb1
    <UIXInclude> <_setupIncludeContext> UIXInclude._setupIncludeContext() - Client ID: pt1
    <UIXInclude> <_tearDownIncludeContext> UIXInclude._tearDownIncludeContext() - Client ID: pt1
    <UIXPageTemplate> <_tearDownPageTemplateContext> UIXPageTemplate._tearDownPageTemplateContext()
    <UIXPageTemplate> <_tearDownPageTemplateContext> UIXPageTemplate._tearDownPageTemplateContext() - model var was being managed by the component.
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to oracle_epm_view_view1PageDef
    <UIXPageTemplate> <_setupPageTemplateContext> UIXPageTemplate._setupPageTemplateContext()
    <UIXInclude$ContextualFacesBeanWrapper> <getProperty> UIXInclude$ContextualFacesBeanWrapper.getProperty() - _inContext = false and key.getName() = value
    <UIXPageTemplate> <_setupPageTemplateContext> UIXPageTemplate._setupPageTemplateContext() - model var is being managed by the component.
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to ptb1
    <UIXInclude> <_setupIncludeContext> UIXInclude._setupIncludeContext() - Client ID: pt1
    <UIXInclude$ContextualFacesBeanWrapper> <getProperty> UIXInclude$ContextualFacesBeanWrapper.getProperty() - _inContext = true and key.getName() = logoImagePath
    <UIXInclude$ContextualFacesBeanWrapper> <getProperty> UIXInclude$ContextualFacesBeanWrapper.getProperty() - _inContext = true and key.getName() = logoImagePath
    <UIXInclude> <_tearDownIncludeContext> UIXInclude._tearDownIncludeContext() - Client ID: pt1
    <UIXPageTemplate> <_tearDownPageTemplateContext> UIXPageTemplate._tearDownPageTemplateContext()
    <UIXPageTemplate> <_tearDownPageTemplateContext> UIXPageTemplate._tearDownPageTemplateContext() - model var was being managed by the component.
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to oracle_epm_view_view1PageDef
    <UIXPageTemplate> <_setupPageTemplateContext> UIXPageTemplate._setupPageTemplateContext()
    <UIXInclude$ContextualFacesBeanWrapper> <getProperty> UIXInclude$ContextualFacesBeanWrapper.getProperty() - _inContext = false and key.getName() = value
    <UIXPageTemplate> <_setupPageTemplateContext> UIXPageTemplate._setupPageTemplateContext() - model var is being managed by the component.
    <LoggingRequestWrapper> <setAttribute> Setting the value of 'bindings' to ptb1
    <UIXInclude> <_setupIncludeContext> UIXInclude._setupIncludeContext() - Client ID: pt1
    <UIXInclude> <_tearDownIncludeContext> UIXInclude._tearDownIncludeContext() - Client ID: pt1

Maybe you are looking for

  • Plan Vs Actual report in PS

    Gurus, New in SAP PS module, appreciate your advice on the PS Plan Vs Actual cost reporting. What kind of standard extractor should we use in order to extract the Plan cost entered in PS? What kind of standard extractor shoud we use in order to extra

  • How do I find a game the app store says is installed on my computer?

    I'm just learning to use my MacBook Pro.  I don't understand many of the terms used.  I purchased a Marjong game from the App Store.  When I go to the App store, there is a little box that says "Installed".  OK...... but how do I find it on my Pro?

  • Disk Repair Help Please

    Hi, I'm stuck - Verify Disk tells me to repair it. I'm on 10.6.7 and put in my Install disc 1 (10.4.6) and Press C It keeps spitting the disc out - at boot or even booted. Cannot get to Utilities > Disk Repair - what stupid thing am I missing please?

  • How to Invite Attendees to Calendar Event?

    Hello, When I create an event on a calendar, how do I add attendees (and ideally have invites mailed to them)? Thanks, Adam Adam Kane Technical Director, ForgeFX http://www.forgefx.com/

  • Question about Windows Services

    I've been trying to cut corners on an XP machine. Since it doesn't need network connectivity, I've disabled networking related services. However, I was wondering if System-level (Start type 0x1) services are safe to disable as well (located under SYS