[jboss-cvs] jboss-seam/src/ui/org/jboss/seam/ui ...

Gavin King gavin.king at jboss.com
Fri Jan 26 11:04:37 EST 2007


  User: gavin   
  Date: 07/01/26 11:04:37

  Modified:    src/ui/org/jboss/seam/ui  UIFormattedText.java
  Log:
  rename classes
  
  Revision  Changes    Path
  1.3       +7 -4      jboss-seam/src/ui/org/jboss/seam/ui/UIFormattedText.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: UIFormattedText.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/UIFormattedText.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- UIFormattedText.java	26 Jan 2007 07:15:32 -0000	1.2
  +++ UIFormattedText.java	26 Jan 2007 16:04:37 -0000	1.3
  @@ -2,10 +2,13 @@
   import java.io.IOException;
   import java.io.Reader;
   import java.io.StringReader;
  +
   import javax.faces.component.UIOutput;
   import javax.faces.context.FacesContext;
  -import org.jboss.seam.text.L;
  -import org.jboss.seam.text.P;
  +
  +import org.jboss.seam.text.SeamTextLexer;
  +import org.jboss.seam.text.SeamTextParser;
  +
   import antlr.ANTLRException;
   public class UIFormattedText extends UIOutput             
   {
  @@ -20,8 +23,8 @@
      {
         if ( !isRendered() || getValue() == null) return;
         Reader r = new StringReader( (String) getValue() );
  -      L lexer = new L(r);
  -      P parser = new P(lexer);
  +      SeamTextLexer lexer = new SeamTextLexer(r);
  +      SeamTextParser parser = new SeamTextParser(lexer);
         try
         {
            parser.startRule();
  
  
  



More information about the jboss-cvs-commits mailing list