[jboss-cvs] jboss-seam/src/main/org/jboss/seam/debug ...

Gavin King gavin.king at jboss.com
Tue Oct 17 10:39:56 EDT 2006


  User: gavin   
  Date: 06/10/17 10:39:56

  Modified:    src/main/org/jboss/seam/debug  Contexts.java
  Log:
  fixes
  
  Revision  Changes    Path
  1.9       +9 -0      jboss-seam/src/main/org/jboss/seam/debug/Contexts.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Contexts.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/debug/Contexts.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- Contexts.java	10 Oct 2006 21:00:53 -0000	1.8
  +++ Contexts.java	17 Oct 2006 14:39:56 -0000	1.9
  @@ -1,15 +1,24 @@
   package org.jboss.seam.debug;
   
  +import java.util.ArrayList;
   import java.util.Arrays;
  +import java.util.List;
   
   import org.jboss.seam.ScopeType;
   import org.jboss.seam.annotations.Name;
   import org.jboss.seam.annotations.Scope;
  +import org.jboss.seam.core.ConversationEntries;
  +import org.jboss.seam.core.ConversationEntry;
   
   @Name("org.jboss.seam.debug.contexts")
   @Scope(ScopeType.APPLICATION)
   public class Contexts 
   {
  +   public List<ConversationEntry> getConversationEntries()
  +   {
  +      return new ArrayList<ConversationEntry>( ConversationEntries.instance().getConversationEntries() );
  +   }
  +   
      public String[] getApplication()
      {
         String[] names = org.jboss.seam.contexts.Contexts.getApplicationContext().getNames();
  
  
  



More information about the jboss-cvs-commits mailing list