Java
  Home arrow Java arrow Introduction to JavaServer Faces Part ...
Dev Shed Forums 
Administration  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Dedicated Servers 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Download TestComplete 
VPS Hosting 
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
JAVA

Introduction to JavaServer Faces Part 2
By: McGraw-Hill/Osborne
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 20
    2004-03-15

    Table of Contents:
  • Introduction to JavaServer Faces Part 2
  • The Action Listener
  • Continuing With the navigateComponent Tree
  • Console Message
  • And the Message
  • Authoring the JSP Page for the Validator Example

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    Iron Speed
     
    ADVERTISEMENT

    PCmover - $15 Off with Coupon Code CJPH7Q

    Introduction to JavaServer Faces Part 2
    (Page 1 of 6 )

    We continue with part two of Chapter 2 of Introduction JavaServer Faces Programming, by Budi Kurniawan (McGraw-Hill/Osborne, ISBN 0-07-222983-7, 2004). This section deals with the ActionListener and Component Tree, as well as validation and navigation for your JSP pages.  This chapter prepares you for the next chapters by introducing the JSF Application Programming Interface (API) and the Application Configuration file.

    Intro to JavaServer FacesWriting the ActionListener for the Listener and Component Tree Example

    The ActionListener for the command button is the most interesting part of this JSF application. It demonstrates how an event causes a listener to be executed. The listener simply prints messages to the console. However, it shows important information such as the hierarchy of the component tree of the JSP page from which the event was fired and the component that triggered the event. The ActionListener is shown in Listing 5.

     

    Listing 5 The ActionListener for the Command Button (MyActionListener.java)

     
    package ch02a
    import java
    .util.Iterator
    import javax
    .faces.component.UIComponent
    import javax
    .faces.context.FacesContext
    import javax
    .faces.event.ActionEvent
    import javax
    .faces.event.ActionListener
    import javax
    .faces.event.PhaseId
    import javax
    .faces.tree.Tree


    public class MyActionListener implements ActionListener 


      
    public PhaseId getPhaseId() { 
       System
    .out.println("getPhaseId called");  
       
    return PhaseId.APPLY_REQUEST_VALUES

     
     public 
    void processAction(ActionEvent event) {   
       System
    .out.println("processAction called");  
       
    // the component that triggered the action event 
       UIComponent component = event.getComponent();
       System.out.println(   
        "The id of the component that fired the action event: "   
        + component.getComponentId());   
       // the action command   
       String actionCommand = event.getActionCommand() 
       System.out.println("Action command: " + actionCommand); 


          
    FacesContext facesContext FacesContext.getCurrentInstance();
          Tree tree 
    facesContext.getTree(); 
          UIComponent root 
    tree.getRoot(); 
          System
    .out.println("----------- Component Tree ------------");
          navigateComponentTree
    (root0); 
          System
    .out.println("----------------------------------------"); 
      



       
    private void navigateComponentTree
          UIComponent component
    int level){ 
          
    // indent 
          for (int i=0; i<level; i++) 
            System.out.print(" "); 
          // print component id 
          System.out.println(component.getComponentId()); 
          Iterator children = component.getChildren(); 
          // navigate children 
          while (children.hasNext()) { 
             UIComponent child = (UIComponent) children.next();
             navigateComponentTree(child, level + 1); 
           } 
         } 


    Buy this book now!Remember: This is part one of the second chapter of JavaServer Faces Programming, by Budi Kurniawan (McGraw-Hill/Osborne, ISBN 0-07-222983). Stay tuned for more helpful chapters from McGraw-Hill/Osborne.
    Buy this book!

    More Java Articles
    More By McGraw-Hill/Osborne


     

       

    JAVA ARTICLES

    - Introducing the Spring Framework
    - Java Classes
    - Completing the Syntactic Comparison of Java ...
    - Syntactic Comparison of Java and C/C++
    - Java Statements
    - Conditionals, Expressions and Other Java Ope...
    - Java Operators
    - Primitive Data Types and Basic Language Rule...
    - Java and Object-Oriented Programming
    - Java Beginning Programming
    - Gaming Development Setup
    - Using RPC-Style Web Services with J2EE
    - Integrating XML with J2EE
    - Taming Tiger: Concurrent Collections
    - Combating the ‘Object Crisis’

    Iron Speed



    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway