[jboss-cvs] jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib ...

Peter Muir peter at bleepbleep.org.uk
Wed Jun 20 04:40:17 EDT 2007


  User: pmuir   
  Date: 07/06/20 04:40:17

  Added:       ui/target/generated-component/java/org/jboss/seam/ui/taglib                            
                        ConvertDateTimeTag.java FormattedTextTag.java
                        TransformImageTypeTag.java
                        ConversationPropagationTag.java CacheTag.java
                        TaskIdTag.java LabelTag.java DecorateTag.java
                        DivTag.java MessageTag.java SelectDateTag.java
                        TransformImageBlurTag.java SpanTag.java
                        ConversationIdTag.java ButtonTag.java
                        ConvertEntityTag.java SelectItemsTag.java
                        FileUploadTag.java ConvertEnumTag.java
                        SelectionTag.java ModelValidatorTag.java
                        LinkTag.java ValidateAllTag.java LoadStyleTag.java
                        GraphicImageTag.java TransformImageSizeTag.java
                        EnumItemTag.java FragmentTag.java
  Log:
  JBSEAM-1013 - CDK port - actually commit it
  
  Revision  Changes    Path
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/ConvertDateTimeTag.java
  
  Index: ConvertDateTimeTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import java.lang.String ;
  import java.util.Locale ;
  import java.util.TimeZone ;
  import javax.faces.webapp.ConverterELTag ;
  import javax.faces.component.UIComponent;
  import javax.faces.convert.Converter;
  import javax.faces.webapp.UIComponentTag;
  import javax.faces.context.FacesContext;
  import javax.faces.el.ValueBinding;
  import org.apache.commons.beanutils.ConvertUtils;
  import javax.servlet.jsp.JspException;
  import org.jboss.seam.ui.converter.DateTimeConverter;
  
  public class ConvertDateTimeTag extends javax.faces.webapp.ConverterELTag 
  {
  
  // Fields
    /*
     * locale
     * ${prop.xmlEncodedDescription}
     */
    private String  _locale = null;
  
    /*
     * timeZone
     * ${prop.xmlEncodedDescription}
     */
    private String  _timeZone = null;
  
    /*
     * type
     * ${prop.xmlEncodedDescription}
     */
    private String  _type = null;
  
    /*
     * dateStyle
     * ${prop.xmlEncodedDescription}
     */
    private String  _dateStyle = null;
  
    /*
     * pattern
     * ${prop.xmlEncodedDescription}
     */
    private String  _pattern = null;
  
    /*
     * timeStyle
     * ${prop.xmlEncodedDescription}
     */
    private String  _timeStyle = null;
  
  // Setters
    /*
     * $prop.description
     * Setter for locale
     * @param locale - new value
     */
    public void setLocale(String  __locale) 
    {
      this._locale = __locale;
    }
  	 
    /*
     * $prop.description
     * Setter for timeZone
     * @param timeZone - new value
     */
    public void setTimeZone(String  __timeZone) 
    {
      this._timeZone = __timeZone;
    }
  	 
    /*
     * $prop.description
     * Setter for type
     * @param type - new value
     */
    public void setType(String  __type) 
    {
      this._type = __type;
    }
  	 
    /*
     * $prop.description
     * Setter for dateStyle
     * @param dateStyle - new value
     */
    public void setDateStyle(String  __dateStyle) 
    {
      this._dateStyle = __dateStyle;
    }
  	 
    /*
     * $prop.description
     * Setter for pattern
     * @param pattern - new value
     */
    public void setPattern(String  __pattern) 
    {
      this._pattern = __pattern;
    }
  	 
    /*
     * $prop.description
     * Setter for timeStyle
     * @param timeStyle - new value
     */
    public void setTimeStyle(String  __timeStyle) 
    {
      this._timeStyle = __timeStyle;
    }
  	 
  
    protected Converter createConverter() throws JspException 
    {
      DateTimeConverter converter = new DateTimeConverter();
      _setProperties(converter);
      return converter;
    }
  
    // Support method to wire in attributes
    private void _setProperties(DateTimeConverter converter) throws JspException 
    {
      FacesContext facesContext = FacesContext.getCurrentInstance();
      if (_locale != null) 
      {
        if (UIComponentTag.isValueReference(_locale)) 
        {
          ValueBinding vb = facesContext.getApplication().createValueBinding(_locale);
          converter.setLocale((Locale) vb.getValue(facesContext));
        }
      }
      if (_timeZone != null) 
      {
        if (UIComponentTag.isValueReference(_timeZone)) 
        {
          ValueBinding vb = facesContext.getApplication().createValueBinding(_timeZone);
          converter.setTimeZone((TimeZone) vb.getValue(facesContext));
        }
      }
      if (_type != null) 
      {
        if (UIComponentTag.isValueReference(_type)) 
        {
          ValueBinding vb = facesContext.getApplication().createValueBinding(_type);
          converter.setType((String) vb.getValue(facesContext));
        }
        else
        {
          converter.setType((String) ConvertUtils.convert(_type, String.class));
        }
      }
      if (_dateStyle != null) 
      {
        if (UIComponentTag.isValueReference(_dateStyle)) 
        {
          ValueBinding vb = facesContext.getApplication().createValueBinding(_dateStyle);
          converter.setDateStyle((String) vb.getValue(facesContext));
        }
        else
        {
          converter.setDateStyle((String) ConvertUtils.convert(_dateStyle, String.class));
        }
      }
      if (_pattern != null) 
      {
        if (UIComponentTag.isValueReference(_pattern)) 
        {
          ValueBinding vb = facesContext.getApplication().createValueBinding(_pattern);
          converter.setPattern((String) vb.getValue(facesContext));
        }
        else
        {
          converter.setPattern((String) ConvertUtils.convert(_pattern, String.class));
        }
      }
      if (_timeStyle != null) 
      {
        if (UIComponentTag.isValueReference(_timeStyle)) 
        {
          ValueBinding vb = facesContext.getApplication().createValueBinding(_timeStyle);
          converter.setTimeStyle((String) vb.getValue(facesContext));
        }
        else
        {
          converter.setTimeStyle((String) ConvertUtils.convert(_timeStyle, String.class));
        }
      }
    }
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/FormattedTextTag.java
  
  Index: FormattedTextTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import javax.faces.convert.Converter ;
  import java.lang.Object ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlFormattedText;
  
  public class FormattedTextTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
          // Setters
                  // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
          	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
             }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.FormattedText";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return "org.jboss.seam.ui.FormattedTextRenderer";
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/TransformImageTypeTag.java
  
  Index: TransformImageTypeTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlTransformImageType;
  
  public class TransformImageTypeTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
      	/*
  	 * contentType
  	 * 
  	 */
  	 private String  _contentType = null;
  
    // Setters
         	/*
  	 * contentType
  	 * 
  	 */
  	/**
  	 * 
  	 * Setter for contentType
  	 * @param contentType - new value
  	 */
  	 public void setContentType( String  __contentType ){
  		this._contentType = __contentType;
       }
  	 
      // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
      	    this._contentType = null;
    	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
      		 		 			setStringProperty(component, "contentType",this._contentType);
  		      }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.graphicImage.TransformImageType";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return null;
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/ConversationPropagationTag.java
  
  Index: ConversationPropagationTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import java.lang.Object ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlConversationPropagation;
  
  public class ConversationPropagationTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
    	/*
  	 * pageflow
  	 * a pageflow definition to begin. (This is only useful when propagation="begin" or propagation="join".)
  	 */
  	 private String  _pageflow = null;
  
    	/*
  	 * type
  	 * determines the conversation propagation style: begin, join, nest, none or end.
  	 */
  	 private String  _type = null;
  
       	/*
  	 * name
  	 * A name of this parameter
  	 */
  	 private String  _name = null;
  
    // Setters
     	/*
  	 * pageflow
  	 * a pageflow definition to begin. (This is only useful when propagation="begin" or propagation="join".)
  	 */
  	/**
  	 * a pageflow definition to begin. (This is only useful when propagation="begin" or propagation="join".)
  	 * Setter for pageflow
  	 * @param pageflow - new value
  	 */
  	 public void setPageflow( String  __pageflow ){
  		this._pageflow = __pageflow;
       }
  	 
     	/*
  	 * type
  	 * determines the conversation propagation style: begin, join, nest, none or end.
  	 */
  	/**
  	 * determines the conversation propagation style: begin, join, nest, none or end.
  	 * Setter for type
  	 * @param type - new value
  	 */
  	 public void setType( String  __type ){
  		this._type = __type;
       }
  	 
           	/*
  	 * name
  	 * A name of this parameter
  	 */
  	/**
  	 * A name of this parameter
  	 * Setter for name
  	 * @param name - new value
  	 */
  	 public void setName( String  __name ){
  		this._name = __name;
       }
  	 
      // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
    	    this._pageflow = null;
    	    this._type = null;
       	    this._name = null;
    	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
    		 		 			setStringProperty(component, "pageflow",this._pageflow);
  		   		 		 			setStringProperty(component, "type",this._type);
  		      		 		 			setStringProperty(component, "name",this._name);
  		      }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.ConversationPropagation";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return null;
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/CacheTag.java
  
  Index: CacheTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlCache;
  
  public class CacheTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
   	/*
  	 * key
  	 * the key to cache rendered content, often a value expression. For example, if we were caching a page fragment that displays a document, we might use key="Document-#{document.id}".
  	 */
  	 private String  _key = null;
  
    	/*
  	 * enabled
  	 * a value expression that determines if the cache should be used.
  	 */
  	 private String  _enabled = null;
  
    	/*
  	 * region
  	 * a JBoss Cache node to use (different nodes can have different expiry policies).
  	 */
  	 private String  _region = null;
  
       // Setters
   	/*
  	 * key
  	 * the key to cache rendered content, often a value expression. For example, if we were caching a page fragment that displays a document, we might use key="Document-#{document.id}".
  	 */
  	/**
  	 * the key to cache rendered content, often a value expression. For example, if we were caching a page fragment that displays a document, we might use key="Document-#{document.id}".
  	 * Setter for key
  	 * @param key - new value
  	 */
  	 public void setKey( String  __key ){
  		this._key = __key;
       }
  	 
     	/*
  	 * enabled
  	 * a value expression that determines if the cache should be used.
  	 */
  	/**
  	 * a value expression that determines if the cache should be used.
  	 * Setter for enabled
  	 * @param enabled - new value
  	 */
  	 public void setEnabled( String  __enabled ){
  		this._enabled = __enabled;
       }
  	 
     	/*
  	 * region
  	 * a JBoss Cache node to use (different nodes can have different expiry policies).
  	 */
  	/**
  	 * a JBoss Cache node to use (different nodes can have different expiry policies).
  	 * Setter for region
  	 * @param region - new value
  	 */
  	 public void setRegion( String  __region ){
  		this._region = __region;
       }
  	 
            // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
   	    this._key = null;
    	    this._enabled = null;
    	    this._region = null;
       	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
   		 		 			setStringProperty(component, "key",this._key);
  		   		 		 			// Simple type - boolean
  			setBooleanProperty(component, "enabled",this._enabled); 
  		   		 		 			setStringProperty(component, "region",this._region);
  		         }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.Cache";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return "org.jboss.seam.ui.CacheRenderer";
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/TaskIdTag.java
  
  Index: TaskIdTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import java.lang.Object ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlTaskId;
  
  public class TaskIdTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
       	/*
  	 * name
  	 * name
  	 */
  	 private String  _name = null;
  
    // Setters
           	/*
  	 * name
  	 * name
  	 */
  	/**
  	 * name
  	 * Setter for name
  	 * @param name - new value
  	 */
  	 public void setName( String  __name ){
  		this._name = __name;
       }
  	 
      // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
       	    this._name = null;
    	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
       		 		 			setStringProperty(component, "name",this._name);
  		      }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.TaskId";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return null;
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/LabelTag.java
  
  Index: LabelTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import javax.faces.convert.Converter ;
  import java.lang.Object ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlLabel;
  
  public class LabelTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
    	/*
  	 * title
  	 * title
  	 */
  	 private String  _title = null;
  
     	/*
  	 * escape
  	 * escape
  	 */
  	 private String  _escape = null;
  
    	/*
  	 * dir
  	 * dir
  	 */
  	 private String  _dir = null;
  
     	/*
  	 * styleClass
  	 * Corresponds to the HTML class attribute
  	 */
  	 private String  _styleClass = null;
  
    	/*
  	 * accesskey
  	 * This attribute assigns an access key to an element. An access key is a single character from the document character set. Note. Authors should consider the input method of the expected reader when specifying an accesskey
  	 */
  	 private String  _accesskey = null;
  
    	/*
  	 * onkeypress
  	 * onkeypress
  	 */
  	 private String  _onkeypress = null;
  
    	/*
  	 * ondblclick
  	 * ondblclick
  	 */
  	 private String  _ondblclick = null;
  
    	/*
  	 * style
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 */
  	 private String  _style = null;
  
    	/*
  	 * onblur
  	 * JavaScript code. The onblur event occurs when an element loses focus either by the pointing device or by tabbing navigation. It may be used with the same elements as onfocus
  	 */
  	 private String  _onblur = null;
  
    	/*
  	 * onmouseover
  	 * onmouseover
  	 */
  	 private String  _onmouseover = null;
  
    	/*
  	 * for
  	 * 
  	 */
  	 private String  _for = null;
  
     	/*
  	 * onkeyup
  	 * onkeyup
  	 */
  	 private String  _onkeyup = null;
  
    	/*
  	 * tabindex
  	 * tabindex
  	 */
  	 private String  _tabindex = null;
  
     	/*
  	 * lang
  	 * lang
  	 */
  	 private String  _lang = null;
  
    	/*
  	 * onclick
  	 * onclick
  	 */
  	 private String  _onclick = null;
  
    	/*
  	 * onmouseout
  	 * onmouseout
  	 */
  	 private String  _onmouseout = null;
  
    	/*
  	 * onkeydown
  	 * onkeydown
  	 */
  	 private String  _onkeydown = null;
  
    	/*
  	 * onmousedown
  	 * onmousedown
  	 */
  	 private String  _onmousedown = null;
  
    	/*
  	 * onfocus
  	 * JavaScript code
  	 */
  	 private String  _onfocus = null;
  
    	/*
  	 * onmouseup
  	 * onmouseup
  	 */
  	 private String  _onmouseup = null;
  
      	/*
  	 * onmousemove
  	 * onmousemove
  	 */
  	 private String  _onmousemove = null;
  
   // Setters
     	/*
  	 * title
  	 * title
  	 */
  	/**
  	 * title
  	 * Setter for title
  	 * @param title - new value
  	 */
  	 public void setTitle( String  __title ){
  		this._title = __title;
       }
  	 
       	/*
  	 * escape
  	 * escape
  	 */
  	/**
  	 * escape
  	 * Setter for escape
  	 * @param escape - new value
  	 */
  	 public void setEscape( String  __escape ){
  		this._escape = __escape;
       }
  	 
     	/*
  	 * dir
  	 * dir
  	 */
  	/**
  	 * dir
  	 * Setter for dir
  	 * @param dir - new value
  	 */
  	 public void setDir( String  __dir ){
  		this._dir = __dir;
       }
  	 
       	/*
  	 * styleClass
  	 * Corresponds to the HTML class attribute
  	 */
  	/**
  	 * Corresponds to the HTML class attribute
  	 * Setter for styleClass
  	 * @param styleClass - new value
  	 */
  	 public void setStyleClass( String  __styleClass ){
  		this._styleClass = __styleClass;
       }
  	 
     	/*
  	 * accesskey
  	 * This attribute assigns an access key to an element. An access key is a single character from the document character set. Note. Authors should consider the input method of the expected reader when specifying an accesskey
  	 */
  	/**
  	 * This attribute assigns an access key to an element. An access key is a single character from the document character set. Note. Authors should consider the input method of the expected reader when specifying an accesskey
  	 * Setter for accesskey
  	 * @param accesskey - new value
  	 */
  	 public void setAccesskey( String  __accesskey ){
  		this._accesskey = __accesskey;
       }
  	 
     	/*
  	 * onkeypress
  	 * onkeypress
  	 */
  	/**
  	 * onkeypress
  	 * Setter for onkeypress
  	 * @param onkeypress - new value
  	 */
  	 public void setOnkeypress( String  __onkeypress ){
  		this._onkeypress = __onkeypress;
       }
  	 
     	/*
  	 * ondblclick
  	 * ondblclick
  	 */
  	/**
  	 * ondblclick
  	 * Setter for ondblclick
  	 * @param ondblclick - new value
  	 */
  	 public void setOndblclick( String  __ondblclick ){
  		this._ondblclick = __ondblclick;
       }
  	 
     	/*
  	 * style
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 */
  	/**
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 * Setter for style
  	 * @param style - new value
  	 */
  	 public void setStyle( String  __style ){
  		this._style = __style;
       }
  	 
     	/*
  	 * onblur
  	 * JavaScript code. The onblur event occurs when an element loses focus either by the pointing device or by tabbing navigation. It may be used with the same elements as onfocus
  	 */
  	/**
  	 * JavaScript code. The onblur event occurs when an element loses focus either by the pointing device or by tabbing navigation. It may be used with the same elements as onfocus
  	 * Setter for onblur
  	 * @param onblur - new value
  	 */
  	 public void setOnblur( String  __onblur ){
  		this._onblur = __onblur;
       }
  	 
     	/*
  	 * onmouseover
  	 * onmouseover
  	 */
  	/**
  	 * onmouseover
  	 * Setter for onmouseover
  	 * @param onmouseover - new value
  	 */
  	 public void setOnmouseover( String  __onmouseover ){
  		this._onmouseover = __onmouseover;
       }
  	 
     	/*
  	 * for
  	 * 
  	 */
  	/**
  	 * 
  	 * Setter for for
  	 * @param for - new value
  	 */
  	 public void setFor( String  __for ){
  		this._for = __for;
       }
  	 
       	/*
  	 * onkeyup
  	 * onkeyup
  	 */
  	/**
  	 * onkeyup
  	 * Setter for onkeyup
  	 * @param onkeyup - new value
  	 */
  	 public void setOnkeyup( String  __onkeyup ){
  		this._onkeyup = __onkeyup;
       }
  	 
     	/*
  	 * tabindex
  	 * tabindex
  	 */
  	/**
  	 * tabindex
  	 * Setter for tabindex
  	 * @param tabindex - new value
  	 */
  	 public void setTabindex( String  __tabindex ){
  		this._tabindex = __tabindex;
       }
  	 
       	/*
  	 * lang
  	 * lang
  	 */
  	/**
  	 * lang
  	 * Setter for lang
  	 * @param lang - new value
  	 */
  	 public void setLang( String  __lang ){
  		this._lang = __lang;
       }
  	 
     	/*
  	 * onclick
  	 * onclick
  	 */
  	/**
  	 * onclick
  	 * Setter for onclick
  	 * @param onclick - new value
  	 */
  	 public void setOnclick( String  __onclick ){
  		this._onclick = __onclick;
       }
  	 
     	/*
  	 * onmouseout
  	 * onmouseout
  	 */
  	/**
  	 * onmouseout
  	 * Setter for onmouseout
  	 * @param onmouseout - new value
  	 */
  	 public void setOnmouseout( String  __onmouseout ){
  		this._onmouseout = __onmouseout;
       }
  	 
     	/*
  	 * onkeydown
  	 * onkeydown
  	 */
  	/**
  	 * onkeydown
  	 * Setter for onkeydown
  	 * @param onkeydown - new value
  	 */
  	 public void setOnkeydown( String  __onkeydown ){
  		this._onkeydown = __onkeydown;
       }
  	 
     	/*
  	 * onmousedown
  	 * onmousedown
  	 */
  	/**
  	 * onmousedown
  	 * Setter for onmousedown
  	 * @param onmousedown - new value
  	 */
  	 public void setOnmousedown( String  __onmousedown ){
  		this._onmousedown = __onmousedown;
       }
  	 
     	/*
  	 * onfocus
  	 * JavaScript code
  	 */
  	/**
  	 * JavaScript code
  	 * Setter for onfocus
  	 * @param onfocus - new value
  	 */
  	 public void setOnfocus( String  __onfocus ){
  		this._onfocus = __onfocus;
       }
  	 
     	/*
  	 * onmouseup
  	 * onmouseup
  	 */
  	/**
  	 * onmouseup
  	 * Setter for onmouseup
  	 * @param onmouseup - new value
  	 */
  	 public void setOnmouseup( String  __onmouseup ){
  		this._onmouseup = __onmouseup;
       }
  	 
         	/*
  	 * onmousemove
  	 * onmousemove
  	 */
  	/**
  	 * onmousemove
  	 * Setter for onmousemove
  	 * @param onmousemove - new value
  	 */
  	 public void setOnmousemove( String  __onmousemove ){
  		this._onmousemove = __onmousemove;
       }
  	 
    // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
    	    this._title = null;
     	    this._escape = null;
    	    this._dir = null;
     	    this._styleClass = null;
    	    this._accesskey = null;
    	    this._onkeypress = null;
    	    this._ondblclick = null;
    	    this._style = null;
    	    this._onblur = null;
    	    this._onmouseover = null;
    	    this._for = null;
     	    this._onkeyup = null;
    	    this._tabindex = null;
     	    this._lang = null;
    	    this._onclick = null;
    	    this._onmouseout = null;
    	    this._onkeydown = null;
    	    this._onmousedown = null;
    	    this._onfocus = null;
    	    this._onmouseup = null;
      	    this._onmousemove = null;
   	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
    		 		 			setStringProperty(component, "title",this._title);
  		    		 		 			// Simple type - boolean
  			setBooleanProperty(component, "escape",this._escape); 
  		   		 		 			setStringProperty(component, "dir",this._dir);
  		    		 		 			setStringProperty(component, "styleClass",this._styleClass);
  		   		 		 			setStringProperty(component, "accesskey",this._accesskey);
  		   		 		 			setStringProperty(component, "onkeypress",this._onkeypress);
  		   		 		 			setStringProperty(component, "ondblclick",this._ondblclick);
  		   		 		 			setStringProperty(component, "style",this._style);
  		   		 		 			setStringProperty(component, "onblur",this._onblur);
  		   		 		 			setStringProperty(component, "onmouseover",this._onmouseover);
  		   		 		 			setStringProperty(component, "for",this._for);
  		    		 		 			setStringProperty(component, "onkeyup",this._onkeyup);
  		   		 		 			setStringProperty(component, "tabindex",this._tabindex);
  		    		 		 			setStringProperty(component, "lang",this._lang);
  		   		 		 			setStringProperty(component, "onclick",this._onclick);
  		   		 		 			setStringProperty(component, "onmouseout",this._onmouseout);
  		   		 		 			setStringProperty(component, "onkeydown",this._onkeydown);
  		   		 		 			setStringProperty(component, "onmousedown",this._onmousedown);
  		   		 		 			setStringProperty(component, "onfocus",this._onfocus);
  		   		 		 			setStringProperty(component, "onmouseup",this._onmouseup);
  		     		 		 			setStringProperty(component, "onmousemove",this._onmousemove);
  		     }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.Label";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return null;
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/DecorateTag.java
  
  Index: DecorateTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlDecorate;
  
  public class DecorateTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
        	/*
  	 * for
  	 * 
  	 */
  	 private String  _for = null;
  
   // Setters
             	/*
  	 * for
  	 * 
  	 */
  	/**
  	 * 
  	 * Setter for for
  	 * @param for - new value
  	 */
  	 public void setFor( String  __for ){
  		this._for = __for;
       }
  	 
    // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
        	    this._for = null;
   	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
        		 		 			setStringProperty(component, "for",this._for);
  		     }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.Decorate";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return "org.jboss.seam.ui.DecorateRenderer";
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/DivTag.java
  
  Index: DivTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlDiv;
  
  public class DivTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
   	/*
  	 * styleClass
  	 * Corresponds to the HTML class attribute
  	 */
  	 private String  _styleClass = null;
  
    	/*
  	 * style
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 */
  	 private String  _style = null;
  
       // Setters
   	/*
  	 * styleClass
  	 * Corresponds to the HTML class attribute
  	 */
  	/**
  	 * Corresponds to the HTML class attribute
  	 * Setter for styleClass
  	 * @param styleClass - new value
  	 */
  	 public void setStyleClass( String  __styleClass ){
  		this._styleClass = __styleClass;
       }
  	 
     	/*
  	 * style
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 */
  	/**
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 * Setter for style
  	 * @param style - new value
  	 */
  	 public void setStyle( String  __style ){
  		this._style = __style;
       }
  	 
            // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
   	    this._styleClass = null;
    	    this._style = null;
       	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
   		 		 			setStringProperty(component, "styleClass",this._styleClass);
  		   		 		 			setStringProperty(component, "style",this._style);
  		         }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.Div";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return "org.jboss.seam.ui.DivRenderer";
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/MessageTag.java
  
  Index: MessageTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlMessage;
  
  public class MessageTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
   	/*
  	 * fatalClass
  	 * fatalClass
  	 */
  	 private String  _fatalClass = null;
  
    	/*
  	 * warnStyle
  	 * warnStyle
  	 */
  	 private String  _warnStyle = null;
  
    	/*
  	 * title
  	 * title
  	 */
  	 private String  _title = null;
  
    	/*
  	 * lang
  	 * lang
  	 */
  	 private String  _lang = null;
  
    	/*
  	 * tooltip
  	 * tooltip
  	 */
  	 private String  _tooltip = null;
  
    	/*
  	 * infoStyle
  	 * infoStyle
  	 */
  	 private String  _infoStyle = null;
  
    	/*
  	 * errorStyle
  	 * errorStyle
  	 */
  	 private String  _errorStyle = null;
  
     	/*
  	 * infoClass
  	 * infoClass
  	 */
  	 private String  _infoClass = null;
  
    	/*
  	 * showDetail
  	 * Indicates whether the detail of associated message(s) should
              be displayed. Default is: false
  	 */
  	 private String  _showDetail = null;
  
     	/*
  	 * dir
  	 * dir
  	 */
  	 private String  _dir = null;
  
    	/*
  	 * fatalStyle
  	 * fatalStyle
  	 */
  	 private String  _fatalStyle = null;
  
    	/*
  	 * styleClass
  	 * styleClass
  	 */
  	 private String  _styleClass = null;
  
    	/*
  	 * showSummary
  	 * Indicates whether the summary of associated message(s)
              should be displayed. Default is: true
  	 */
  	 private String  _showSummary = null;
  
    	/*
  	 * style
  	 * style
  	 */
  	 private String  _style = null;
  
    	/*
  	 * warnClass
  	 * warnClass
  	 */
  	 private String  _warnClass = null;
  
      	/*
  	 * errorClass
  	 * errorClass
  	 */
  	 private String  _errorClass = null;
  
    	/*
  	 * for
  	 * A client identifier of the component for which this component
              represents associated message(s)
  	 */
  	 private String  _for = null;
  
   // Setters
   	/*
  	 * fatalClass
  	 * fatalClass
  	 */
  	/**
  	 * fatalClass
  	 * Setter for fatalClass
  	 * @param fatalClass - new value
  	 */
  	 public void setFatalClass( String  __fatalClass ){
  		this._fatalClass = __fatalClass;
       }
  	 
     	/*
  	 * warnStyle
  	 * warnStyle
  	 */
  	/**
  	 * warnStyle
  	 * Setter for warnStyle
  	 * @param warnStyle - new value
  	 */
  	 public void setWarnStyle( String  __warnStyle ){
  		this._warnStyle = __warnStyle;
       }
  	 
     	/*
  	 * title
  	 * title
  	 */
  	/**
  	 * title
  	 * Setter for title
  	 * @param title - new value
  	 */
  	 public void setTitle( String  __title ){
  		this._title = __title;
       }
  	 
     	/*
  	 * lang
  	 * lang
  	 */
  	/**
  	 * lang
  	 * Setter for lang
  	 * @param lang - new value
  	 */
  	 public void setLang( String  __lang ){
  		this._lang = __lang;
       }
  	 
     	/*
  	 * tooltip
  	 * tooltip
  	 */
  	/**
  	 * tooltip
  	 * Setter for tooltip
  	 * @param tooltip - new value
  	 */
  	 public void setTooltip( String  __tooltip ){
  		this._tooltip = __tooltip;
       }
  	 
     	/*
  	 * infoStyle
  	 * infoStyle
  	 */
  	/**
  	 * infoStyle
  	 * Setter for infoStyle
  	 * @param infoStyle - new value
  	 */
  	 public void setInfoStyle( String  __infoStyle ){
  		this._infoStyle = __infoStyle;
       }
  	 
     	/*
  	 * errorStyle
  	 * errorStyle
  	 */
  	/**
  	 * errorStyle
  	 * Setter for errorStyle
  	 * @param errorStyle - new value
  	 */
  	 public void setErrorStyle( String  __errorStyle ){
  		this._errorStyle = __errorStyle;
       }
  	 
       	/*
  	 * infoClass
  	 * infoClass
  	 */
  	/**
  	 * infoClass
  	 * Setter for infoClass
  	 * @param infoClass - new value
  	 */
  	 public void setInfoClass( String  __infoClass ){
  		this._infoClass = __infoClass;
       }
  	 
     	/*
  	 * showDetail
  	 * Indicates whether the detail of associated message(s) should
              be displayed. Default is: false
  	 */
  	/**
  	 * Indicates whether the detail of associated message(s) should
              be displayed. Default is: false
  	 * Setter for showDetail
  	 * @param showDetail - new value
  	 */
  	 public void setShowDetail( String  __showDetail ){
  		this._showDetail = __showDetail;
       }
  	 
       	/*
  	 * dir
  	 * dir
  	 */
  	/**
  	 * dir
  	 * Setter for dir
  	 * @param dir - new value
  	 */
  	 public void setDir( String  __dir ){
  		this._dir = __dir;
       }
  	 
     	/*
  	 * fatalStyle
  	 * fatalStyle
  	 */
  	/**
  	 * fatalStyle
  	 * Setter for fatalStyle
  	 * @param fatalStyle - new value
  	 */
  	 public void setFatalStyle( String  __fatalStyle ){
  		this._fatalStyle = __fatalStyle;
       }
  	 
     	/*
  	 * styleClass
  	 * styleClass
  	 */
  	/**
  	 * styleClass
  	 * Setter for styleClass
  	 * @param styleClass - new value
  	 */
  	 public void setStyleClass( String  __styleClass ){
  		this._styleClass = __styleClass;
       }
  	 
     	/*
  	 * showSummary
  	 * Indicates whether the summary of associated message(s)
              should be displayed. Default is: true
  	 */
  	/**
  	 * Indicates whether the summary of associated message(s)
              should be displayed. Default is: true
  	 * Setter for showSummary
  	 * @param showSummary - new value
  	 */
  	 public void setShowSummary( String  __showSummary ){
  		this._showSummary = __showSummary;
       }
  	 
     	/*
  	 * style
  	 * style
  	 */
  	/**
  	 * style
  	 * Setter for style
  	 * @param style - new value
  	 */
  	 public void setStyle( String  __style ){
  		this._style = __style;
       }
  	 
     	/*
  	 * warnClass
  	 * warnClass
  	 */
  	/**
  	 * warnClass
  	 * Setter for warnClass
  	 * @param warnClass - new value
  	 */
  	 public void setWarnClass( String  __warnClass ){
  		this._warnClass = __warnClass;
       }
  	 
         	/*
  	 * errorClass
  	 * errorClass
  	 */
  	/**
  	 * errorClass
  	 * Setter for errorClass
  	 * @param errorClass - new value
  	 */
  	 public void setErrorClass( String  __errorClass ){
  		this._errorClass = __errorClass;
       }
  	 
     	/*
  	 * for
  	 * A client identifier of the component for which this component
              represents associated message(s)
  	 */
  	/**
  	 * A client identifier of the component for which this component
              represents associated message(s)
  	 * Setter for for
  	 * @param for - new value
  	 */
  	 public void setFor( String  __for ){
  		this._for = __for;
       }
  	 
    // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
   	    this._fatalClass = null;
    	    this._warnStyle = null;
    	    this._title = null;
    	    this._lang = null;
    	    this._tooltip = null;
    	    this._infoStyle = null;
    	    this._errorStyle = null;
     	    this._infoClass = null;
    	    this._showDetail = null;
     	    this._dir = null;
    	    this._fatalStyle = null;
    	    this._styleClass = null;
    	    this._showSummary = null;
    	    this._style = null;
    	    this._warnClass = null;
      	    this._errorClass = null;
    	    this._for = null;
   	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
   		 		 			setStringProperty(component, "fatalClass",this._fatalClass);
  		   		 		 			setStringProperty(component, "warnStyle",this._warnStyle);
  		   		 		 			setStringProperty(component, "title",this._title);
  		   		 		 			setStringProperty(component, "lang",this._lang);
  		   		 		 			// Simple type - boolean
  			setBooleanProperty(component, "tooltip",this._tooltip); 
  		   		 		 			setStringProperty(component, "infoStyle",this._infoStyle);
  		   		 		 			setStringProperty(component, "errorStyle",this._errorStyle);
  		    		 		 			setStringProperty(component, "infoClass",this._infoClass);
  		   		 		 			// Simple type - boolean
  			setBooleanProperty(component, "showDetail",this._showDetail); 
  		    		 		 			setStringProperty(component, "dir",this._dir);
  		   		 		 			setStringProperty(component, "fatalStyle",this._fatalStyle);
  		   		 		 			setStringProperty(component, "styleClass",this._styleClass);
  		   		 		 			// Simple type - boolean
  			setBooleanProperty(component, "showSummary",this._showSummary); 
  		   		 		 			setStringProperty(component, "style",this._style);
  		   		 		 			setStringProperty(component, "warnClass",this._warnClass);
  		     		 		 			setStringProperty(component, "errorClass",this._errorClass);
  		   		 		 			setStringProperty(component, "for",this._for);
  		     }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.Message";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return null;
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/SelectDateTag.java
  
  Index: SelectDateTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlSelectDate;
  
  public class SelectDateTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
   	/*
  	 * endYear
  	 * 
  	 */
  	 private String  _endYear = null;
  
    	/*
  	 * startYear
  	 * 
  	 */
  	 private String  _startYear = null;
  
    	/*
  	 * styleClass
  	 * Corresponds to the HTML class attribute
  	 */
  	 private String  _styleClass = null;
  
    	/*
  	 * dateFormat
  	 * 
  	 */
  	 private String  _dateFormat = null;
  
    	/*
  	 * style
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 */
  	 private String  _style = null;
  
        	/*
  	 * for
  	 * 
  	 */
  	 private String  _for = null;
  
   // Setters
   	/*
  	 * endYear
  	 * 
  	 */
  	/**
  	 * 
  	 * Setter for endYear
  	 * @param endYear - new value
  	 */
  	 public void setEndYear( String  __endYear ){
  		this._endYear = __endYear;
       }
  	 
     	/*
  	 * startYear
  	 * 
  	 */
  	/**
  	 * 
  	 * Setter for startYear
  	 * @param startYear - new value
  	 */
  	 public void setStartYear( String  __startYear ){
  		this._startYear = __startYear;
       }
  	 
     	/*
  	 * styleClass
  	 * Corresponds to the HTML class attribute
  	 */
  	/**
  	 * Corresponds to the HTML class attribute
  	 * Setter for styleClass
  	 * @param styleClass - new value
  	 */
  	 public void setStyleClass( String  __styleClass ){
  		this._styleClass = __styleClass;
       }
  	 
     	/*
  	 * dateFormat
  	 * 
  	 */
  	/**
  	 * 
  	 * Setter for dateFormat
  	 * @param dateFormat - new value
  	 */
  	 public void setDateFormat( String  __dateFormat ){
  		this._dateFormat = __dateFormat;
       }
  	 
     	/*
  	 * style
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 */
  	/**
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 * Setter for style
  	 * @param style - new value
  	 */
  	 public void setStyle( String  __style ){
  		this._style = __style;
       }
  	 
             	/*
  	 * for
  	 * 
  	 */
  	/**
  	 * 
  	 * Setter for for
  	 * @param for - new value
  	 */
  	 public void setFor( String  __for ){
  		this._for = __for;
       }
  	 
    // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
   	    this._endYear = null;
    	    this._startYear = null;
    	    this._styleClass = null;
    	    this._dateFormat = null;
    	    this._style = null;
        	    this._for = null;
   	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
   		 		 			// Simple type - int
  			setIntegerProperty(component, "endYear",this._endYear); 
  		   		 		 			// Simple type - int
  			setIntegerProperty(component, "startYear",this._startYear); 
  		   		 		 			setStringProperty(component, "styleClass",this._styleClass);
  		   		 		 			setStringProperty(component, "dateFormat",this._dateFormat);
  		   		 		 			setStringProperty(component, "style",this._style);
  		       		 		 			setStringProperty(component, "for",this._for);
  		     }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.SelectDate";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return "org.jboss.seam.ui.SelectDateRenderer";
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/TransformImageBlurTag.java
  
  Index: TransformImageBlurTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlTransformImageBlur;
  
  public class TransformImageBlurTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
   	/*
  	 * radius
  	 * 
  	 */
  	 private String  _radius = null;
  
       // Setters
   	/*
  	 * radius
  	 * 
  	 */
  	/**
  	 * 
  	 * Setter for radius
  	 * @param radius - new value
  	 */
  	 public void setRadius( String  __radius ){
  		this._radius = __radius;
       }
  	 
            // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
   	    this._radius = null;
       	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
   		 		 			setStringProperty(component, "radius",this._radius);
  		         }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.graphicImage.TransformImageBlur";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return null;
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/SpanTag.java
  
  Index: SpanTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlSpan;
  
  public class SpanTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
   	/*
  	 * styleClass
  	 * Corresponds to the HTML class attribute
  	 */
  	 private String  _styleClass = null;
  
    	/*
  	 * style
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 */
  	 private String  _style = null;
  
       // Setters
   	/*
  	 * styleClass
  	 * Corresponds to the HTML class attribute
  	 */
  	/**
  	 * Corresponds to the HTML class attribute
  	 * Setter for styleClass
  	 * @param styleClass - new value
  	 */
  	 public void setStyleClass( String  __styleClass ){
  		this._styleClass = __styleClass;
       }
  	 
     	/*
  	 * style
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 */
  	/**
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 * Setter for style
  	 * @param style - new value
  	 */
  	 public void setStyle( String  __style ){
  		this._style = __style;
       }
  	 
            // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
   	    this._styleClass = null;
    	    this._style = null;
       	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
   		 		 			setStringProperty(component, "styleClass",this._styleClass);
  		   		 		 			setStringProperty(component, "style",this._style);
  		         }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.Span";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return "org.jboss.seam.ui.SpanRenderer";
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/ConversationIdTag.java
  
  Index: ConversationIdTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import java.lang.Object ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlConversationId;
  
  public class ConversationIdTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
       	/*
  	 * name
  	 * name
  	 */
  	 private String  _name = null;
  
     	/*
  	 * viewId
  	 * viewId
  	 */
  	 private String  _viewId = null;
  
   // Setters
           	/*
  	 * name
  	 * name
  	 */
  	/**
  	 * name
  	 * Setter for name
  	 * @param name - new value
  	 */
  	 public void setName( String  __name ){
  		this._name = __name;
       }
  	 
       	/*
  	 * viewId
  	 * viewId
  	 */
  	/**
  	 * viewId
  	 * Setter for viewId
  	 * @param viewId - new value
  	 */
  	 public void setViewId( String  __viewId ){
  		this._viewId = __viewId;
       }
  	 
    // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
       	    this._name = null;
     	    this._viewId = null;
   	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
       		 		 			setStringProperty(component, "name",this._name);
  		    		 		 			setStringProperty(component, "viewId",this._viewId);
  		     }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.ConversationId";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return null;
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/ButtonTag.java
  
  Index: ButtonTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import javax.faces.convert.Converter ;
  import java.lang.Object ;
  import javax.faces.el.MethodBinding ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlButton;
  
  public class ButtonTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
   	/*
  	 * actionListener
  	 * MethodBinding pointing at method accepting  an ActionEvent with return type void
  	 */
  	 private String  _actionListener = null;
  
      	/*
  	 * title
  	 * Advisory title information about markup elements generated for this component
  	 */
  	 private String  _title = null;
  
       	/*
  	 * dir
  	 * Direction indication for text that does not inherit
  			directionality. Valid values are "LTR" (left-to-right)
  			and "RTL" (right-to-left)
  	 */
  	 private String  _dir = null;
  
    	/*
  	 * styleClass
  	 * Corresponds to the HTML class attribute
  	 */
  	 private String  _styleClass = null;
  
    	/*
  	 * pageflow
  	 * a pageflow definition to begin. (This is only useful when propagation="begin" or propagation="join".)
  	 */
  	 private String  _pageflow = null;
  
    	/*
  	 * outcome
  	 * outcome
  	 */
  	 private String  _outcome = null;
  
    	/*
  	 * accesskey
  	 * This attribute assigns an access key to an element. An access key is a single character from the document character set. Note: Authors should consider the input method of the expected reader when specifying an accesskey
  	 */
  	 private String  _accesskey = null;
  
    	/*
  	 * fragment
  	 * the fragment identifier to link to.
  	 */
  	 private String  _fragment = null;
  
    	/*
  	 * onkeypress
  	 * HTML: a script expression; a key is pressed and released
  	 */
  	 private String  _onkeypress = null;
  
    	/*
  	 * ondblclick
  	 * HTML: a script expression; a pointer button is double-clicked
  	 */
  	 private String  _ondblclick = null;
  
    	/*
  	 * image
  	 * image
  	 */
  	 private String  _image = null;
  
    	/*
  	 * propagation
  	 * determines the conversation propagation style: begin, join, nest, none or end.
  	 */
  	 private String  _propagation = null;
  
    	/*
  	 * style
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 */
  	 private String  _style = null;
  
     	/*
  	 * size
  	 * This attribute tells the user agent the initial width of the control. The width is given in pixels except when type attribute has the value "text" or "password". In that case, its value refers to the (integer) number of characters
  	 */
  	 private String  _size = null;
  
    	/*
  	 * onmouseover
  	 * HTML: a script expression; a pointer is moved onto
  	 */
  	 private String  _onmouseover = null;
  
    	/*
  	 * view
  	 * the JSF view id to link to.
  	 */
  	 private String  _view = null;
  
    	/*
  	 * action
  	 * MethodBinding pointing at the application action to be invoked,
              if this UIComponent is activated by the user, during the Apply
              Request Values or Invoke Application phase of the request
              processing lifecycle, depending on the value of the immediate
              property
  	 */
  	 private String  _action = null;
  
     	/*
  	 * onkeyup
  	 * HTML: a script expression; a key is released
  	 */
  	 private String  _onkeyup = null;
  
    	/*
  	 * tabindex
  	 * This attribute specifies the position of the current element in the tabbing order for the current document. This value must be a number between 0 and 32767. User agents should ignore leading zeros
  	 */
  	 private String  _tabindex = null;
  
     	/*
  	 * type
  	 * submit|reset|image|button This attribute specifies a type of control to create. The default value for this attribute is "submit"
  	 */
  	 private String  _type = null;
  
    	/*
  	 * lang
  	 * Code describing the language used in the generated markup for this component
  	 */
  	 private String  _lang = null;
  
    	/*
  	 * disabled
  	 * When set for a form control, this boolean attribute disables the control for user input.
  	 */
  	 private String  _disabled = null;
  
    	/*
  	 * onclick
  	 * HTML: a script expression; a pointer button is clicked
  	 */
  	 private String  _onclick = null;
  
     	/*
  	 * alt
  	 * For a user agents that cannot display images, forms, or applets, this attribute specifies alternate text. The language of the alternate text is specified by the lang attribute
  	 */
  	 private String  _alt = null;
  
    	/*
  	 * onmouseout
  	 * HTML: a script expression; a pointer is moved away
  	 */
  	 private String  _onmouseout = null;
  
    	/*
  	 * onkeydown
  	 * HTML: a script expression; a key is pressed down
  	 */
  	 private String  _onkeydown = null;
  
    	/*
  	 * onmousedown
  	 * HTML: script expression; a pointer button is pressed down
  	 */
  	 private String  _onmousedown = null;
  
    	/*
  	 * immediate
  	 * True means, that the default ActionListener should be executed
              immediately (i.e. during Apply Request Values phase of the
              request processing lifecycle), rather than waiting until the
              Invoke Application phase
  	 */
  	 private String  _immediate = null;
  
    	/*
  	 * onmouseup
  	 * HTML: script expression; a pointer button is released
  	 */
  	 private String  _onmouseup = null;
  
      	/*
  	 * onmousemove
  	 * HTML: a script expression; a pointer is moved within
  	 */
  	 private String  _onmousemove = null;
  
   // Setters
   	/*
  	 * actionListener
  	 * MethodBinding pointing at method accepting  an ActionEvent with return type void
  	 */
  	/**
  	 * MethodBinding pointing at method accepting  an ActionEvent with return type void
  	 * Setter for actionListener
  	 * @param actionListener - new value
  	 */
  	 public void setActionListener( String  __actionListener ){
  		this._actionListener = __actionListener;
       }
  	 
         	/*
  	 * title
  	 * Advisory title information about markup elements generated for this component
  	 */
  	/**
  	 * Advisory title information about markup elements generated for this component
  	 * Setter for title
  	 * @param title - new value
  	 */
  	 public void setTitle( String  __title ){
  		this._title = __title;
       }
  	 
           	/*
  	 * dir
  	 * Direction indication for text that does not inherit
  			directionality. Valid values are "LTR" (left-to-right)
  			and "RTL" (right-to-left)
  	 */
  	/**
  	 * Direction indication for text that does not inherit
  			directionality. Valid values are "LTR" (left-to-right)
  			and "RTL" (right-to-left)
  	 * Setter for dir
  	 * @param dir - new value
  	 */
  	 public void setDir( String  __dir ){
  		this._dir = __dir;
       }
  	 
     	/*
  	 * styleClass
  	 * Corresponds to the HTML class attribute
  	 */
  	/**
  	 * Corresponds to the HTML class attribute
  	 * Setter for styleClass
  	 * @param styleClass - new value
  	 */
  	 public void setStyleClass( String  __styleClass ){
  		this._styleClass = __styleClass;
       }
  	 
     	/*
  	 * pageflow
  	 * a pageflow definition to begin. (This is only useful when propagation="begin" or propagation="join".)
  	 */
  	/**
  	 * a pageflow definition to begin. (This is only useful when propagation="begin" or propagation="join".)
  	 * Setter for pageflow
  	 * @param pageflow - new value
  	 */
  	 public void setPageflow( String  __pageflow ){
  		this._pageflow = __pageflow;
       }
  	 
     	/*
  	 * outcome
  	 * outcome
  	 */
  	/**
  	 * outcome
  	 * Setter for outcome
  	 * @param outcome - new value
  	 */
  	 public void setOutcome( String  __outcome ){
  		this._outcome = __outcome;
       }
  	 
     	/*
  	 * accesskey
  	 * This attribute assigns an access key to an element. An access key is a single character from the document character set. Note: Authors should consider the input method of the expected reader when specifying an accesskey
  	 */
  	/**
  	 * This attribute assigns an access key to an element. An access key is a single character from the document character set. Note: Authors should consider the input method of the expected reader when specifying an accesskey
  	 * Setter for accesskey
  	 * @param accesskey - new value
  	 */
  	 public void setAccesskey( String  __accesskey ){
  		this._accesskey = __accesskey;
       }
  	 
     	/*
  	 * fragment
  	 * the fragment identifier to link to.
  	 */
  	/**
  	 * the fragment identifier to link to.
  	 * Setter for fragment
  	 * @param fragment - new value
  	 */
  	 public void setFragment( String  __fragment ){
  		this._fragment = __fragment;
       }
  	 
     	/*
  	 * onkeypress
  	 * HTML: a script expression; a key is pressed and released
  	 */
  	/**
  	 * HTML: a script expression; a key is pressed and released
  	 * Setter for onkeypress
  	 * @param onkeypress - new value
  	 */
  	 public void setOnkeypress( String  __onkeypress ){
  		this._onkeypress = __onkeypress;
       }
  	 
     	/*
  	 * ondblclick
  	 * HTML: a script expression; a pointer button is double-clicked
  	 */
  	/**
  	 * HTML: a script expression; a pointer button is double-clicked
  	 * Setter for ondblclick
  	 * @param ondblclick - new value
  	 */
  	 public void setOndblclick( String  __ondblclick ){
  		this._ondblclick = __ondblclick;
       }
  	 
     	/*
  	 * image
  	 * image
  	 */
  	/**
  	 * image
  	 * Setter for image
  	 * @param image - new value
  	 */
  	 public void setImage( String  __image ){
  		this._image = __image;
       }
  	 
     	/*
  	 * propagation
  	 * determines the conversation propagation style: begin, join, nest, none or end.
  	 */
  	/**
  	 * determines the conversation propagation style: begin, join, nest, none or end.
  	 * Setter for propagation
  	 * @param propagation - new value
  	 */
  	 public void setPropagation( String  __propagation ){
  		this._propagation = __propagation;
       }
  	 
     	/*
  	 * style
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 */
  	/**
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 * Setter for style
  	 * @param style - new value
  	 */
  	 public void setStyle( String  __style ){
  		this._style = __style;
       }
  	 
       	/*
  	 * size
  	 * This attribute tells the user agent the initial width of the control. The width is given in pixels except when type attribute has the value "text" or "password". In that case, its value refers to the (integer) number of characters
  	 */
  	/**
  	 * This attribute tells the user agent the initial width of the control. The width is given in pixels except when type attribute has the value "text" or "password". In that case, its value refers to the (integer) number of characters
  	 * Setter for size
  	 * @param size - new value
  	 */
  	 public void setSize( String  __size ){
  		this._size = __size;
       }
  	 
     	/*
  	 * onmouseover
  	 * HTML: a script expression; a pointer is moved onto
  	 */
  	/**
  	 * HTML: a script expression; a pointer is moved onto
  	 * Setter for onmouseover
  	 * @param onmouseover - new value
  	 */
  	 public void setOnmouseover( String  __onmouseover ){
  		this._onmouseover = __onmouseover;
       }
  	 
     	/*
  	 * view
  	 * the JSF view id to link to.
  	 */
  	/**
  	 * the JSF view id to link to.
  	 * Setter for view
  	 * @param view - new value
  	 */
  	 public void setView( String  __view ){
  		this._view = __view;
       }
  	 
     	/*
  	 * action
  	 * MethodBinding pointing at the application action to be invoked,
              if this UIComponent is activated by the user, during the Apply
              Request Values or Invoke Application phase of the request
              processing lifecycle, depending on the value of the immediate
              property
  	 */
  	/**
  	 * MethodBinding pointing at the application action to be invoked,
              if this UIComponent is activated by the user, during the Apply
              Request Values or Invoke Application phase of the request
              processing lifecycle, depending on the value of the immediate
              property
  	 * Setter for action
  	 * @param action - new value
  	 */
  	 public void setAction( String  __action ){
  		this._action = __action;
       }
  	 
       	/*
  	 * onkeyup
  	 * HTML: a script expression; a key is released
  	 */
  	/**
  	 * HTML: a script expression; a key is released
  	 * Setter for onkeyup
  	 * @param onkeyup - new value
  	 */
  	 public void setOnkeyup( String  __onkeyup ){
  		this._onkeyup = __onkeyup;
       }
  	 
     	/*
  	 * tabindex
  	 * This attribute specifies the position of the current element in the tabbing order for the current document. This value must be a number between 0 and 32767. User agents should ignore leading zeros
  	 */
  	/**
  	 * This attribute specifies the position of the current element in the tabbing order for the current document. This value must be a number between 0 and 32767. User agents should ignore leading zeros
  	 * Setter for tabindex
  	 * @param tabindex - new value
  	 */
  	 public void setTabindex( String  __tabindex ){
  		this._tabindex = __tabindex;
       }
  	 
       	/*
  	 * type
  	 * submit|reset|image|button This attribute specifies a type of control to create. The default value for this attribute is "submit"
  	 */
  	/**
  	 * submit|reset|image|button This attribute specifies a type of control to create. The default value for this attribute is "submit"
  	 * Setter for type
  	 * @param type - new value
  	 */
  	 public void setType( String  __type ){
  		this._type = __type;
       }
  	 
     	/*
  	 * lang
  	 * Code describing the language used in the generated markup for this component
  	 */
  	/**
  	 * Code describing the language used in the generated markup for this component
  	 * Setter for lang
  	 * @param lang - new value
  	 */
  	 public void setLang( String  __lang ){
  		this._lang = __lang;
       }
  	 
     	/*
  	 * disabled
  	 * When set for a form control, this boolean attribute disables the control for user input.
  	 */
  	/**
  	 * When set for a form control, this boolean attribute disables the control for user input.
  	 * Setter for disabled
  	 * @param disabled - new value
  	 */
  	 public void setDisabled( String  __disabled ){
  		this._disabled = __disabled;
       }
  	 
     	/*
  	 * onclick
  	 * HTML: a script expression; a pointer button is clicked
  	 */
  	/**
  	 * HTML: a script expression; a pointer button is clicked
  	 * Setter for onclick
  	 * @param onclick - new value
  	 */
  	 public void setOnclick( String  __onclick ){
  		this._onclick = __onclick;
       }
  	 
       	/*
  	 * alt
  	 * For a user agents that cannot display images, forms, or applets, this attribute specifies alternate text. The language of the alternate text is specified by the lang attribute
  	 */
  	/**
  	 * For a user agents that cannot display images, forms, or applets, this attribute specifies alternate text. The language of the alternate text is specified by the lang attribute
  	 * Setter for alt
  	 * @param alt - new value
  	 */
  	 public void setAlt( String  __alt ){
  		this._alt = __alt;
       }
  	 
     	/*
  	 * onmouseout
  	 * HTML: a script expression; a pointer is moved away
  	 */
  	/**
  	 * HTML: a script expression; a pointer is moved away
  	 * Setter for onmouseout
  	 * @param onmouseout - new value
  	 */
  	 public void setOnmouseout( String  __onmouseout ){
  		this._onmouseout = __onmouseout;
       }
  	 
     	/*
  	 * onkeydown
  	 * HTML: a script expression; a key is pressed down
  	 */
  	/**
  	 * HTML: a script expression; a key is pressed down
  	 * Setter for onkeydown
  	 * @param onkeydown - new value
  	 */
  	 public void setOnkeydown( String  __onkeydown ){
  		this._onkeydown = __onkeydown;
       }
  	 
     	/*
  	 * onmousedown
  	 * HTML: script expression; a pointer button is pressed down
  	 */
  	/**
  	 * HTML: script expression; a pointer button is pressed down
  	 * Setter for onmousedown
  	 * @param onmousedown - new value
  	 */
  	 public void setOnmousedown( String  __onmousedown ){
  		this._onmousedown = __onmousedown;
       }
  	 
     	/*
  	 * immediate
  	 * True means, that the default ActionListener should be executed
              immediately (i.e. during Apply Request Values phase of the
              request processing lifecycle), rather than waiting until the
              Invoke Application phase
  	 */
  	/**
  	 * True means, that the default ActionListener should be executed
              immediately (i.e. during Apply Request Values phase of the
              request processing lifecycle), rather than waiting until the
              Invoke Application phase
  	 * Setter for immediate
  	 * @param immediate - new value
  	 */
  	 public void setImmediate( String  __immediate ){
  		this._immediate = __immediate;
       }
  	 
     	/*
  	 * onmouseup
  	 * HTML: script expression; a pointer button is released
  	 */
  	/**
  	 * HTML: script expression; a pointer button is released
  	 * Setter for onmouseup
  	 * @param onmouseup - new value
  	 */
  	 public void setOnmouseup( String  __onmouseup ){
  		this._onmouseup = __onmouseup;
       }
  	 
         	/*
  	 * onmousemove
  	 * HTML: a script expression; a pointer is moved within
  	 */
  	/**
  	 * HTML: a script expression; a pointer is moved within
  	 * Setter for onmousemove
  	 * @param onmousemove - new value
  	 */
  	 public void setOnmousemove( String  __onmousemove ){
  		this._onmousemove = __onmousemove;
       }
  	 
    // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
   	    this._actionListener = null;
      	    this._title = null;
       	    this._dir = null;
    	    this._styleClass = null;
    	    this._pageflow = null;
    	    this._outcome = null;
    	    this._accesskey = null;
    	    this._fragment = null;
    	    this._onkeypress = null;
    	    this._ondblclick = null;
    	    this._image = null;
    	    this._propagation = null;
    	    this._style = null;
     	    this._size = null;
    	    this._onmouseover = null;
    	    this._view = null;
    	    this._action = null;
     	    this._onkeyup = null;
    	    this._tabindex = null;
     	    this._type = null;
    	    this._lang = null;
    	    this._disabled = null;
    	    this._onclick = null;
     	    this._alt = null;
    	    this._onmouseout = null;
    	    this._onkeydown = null;
    	    this._onmousedown = null;
    	    this._immediate = null;
    	    this._onmouseup = null;
      	    this._onmousemove = null;
   	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
   		 		 			setActionListenerProperty(component, this._actionListener);
  		     		 		 			setStringProperty(component, "title",this._title);
  		      		 		 			setStringProperty(component, "dir",this._dir);
  		   		 		 			setStringProperty(component, "styleClass",this._styleClass);
  		   		 		 			setStringProperty(component, "pageflow",this._pageflow);
  		   		 		 			setStringProperty(component, "outcome",this._outcome);
  		   		 		 			setStringProperty(component, "accesskey",this._accesskey);
  		   		 		 			setStringProperty(component, "fragment",this._fragment);
  		   		 		 			setStringProperty(component, "onkeypress",this._onkeypress);
  		   		 		 			setStringProperty(component, "ondblclick",this._ondblclick);
  		   		 		 			setStringProperty(component, "image",this._image);
  		   		 		 			setStringProperty(component, "propagation",this._propagation);
  		   		 		 			setStringProperty(component, "style",this._style);
  		    		 		 			// Simple type - int
  			setIntegerProperty(component, "size",this._size); 
  		   		 		 			setStringProperty(component, "onmouseover",this._onmouseover);
  		   		 		 			setStringProperty(component, "view",this._view);
  		   		 		 			setActionProperty(component, this._action);
  		    		 		 			setStringProperty(component, "onkeyup",this._onkeyup);
  		   		 		 			setStringProperty(component, "tabindex",this._tabindex);
  		    		 		 			setStringProperty(component, "type",this._type);
  		   		 		 			setStringProperty(component, "lang",this._lang);
  		   		 		 			// Simple type - boolean
  			setBooleanProperty(component, "disabled",this._disabled); 
  		   		 		 			setStringProperty(component, "onclick",this._onclick);
  		    		 		 			setStringProperty(component, "alt",this._alt);
  		   		 		 			setStringProperty(component, "onmouseout",this._onmouseout);
  		   		 		 			setStringProperty(component, "onkeydown",this._onkeydown);
  		   		 		 			setStringProperty(component, "onmousedown",this._onmousedown);
  		   		 		 			// Simple type - boolean
  			setBooleanProperty(component, "immediate",this._immediate); 
  		   		 		 			setStringProperty(component, "onmouseup",this._onmouseup);
  		     		 		 			setStringProperty(component, "onmousemove",this._onmousemove);
  		     }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.Button";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return "org.jboss.seam.ui.ButtonRenderer";
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/ConvertEntityTag.java
  
  Index: ConvertEntityTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import javax.faces.webapp.ConverterELTag ;
  import javax.faces.component.UIComponent;
  import javax.faces.convert.Converter;
  import javax.faces.webapp.UIComponentTag;
  import javax.faces.context.FacesContext;
  import javax.faces.el.ValueBinding;
  import org.apache.commons.beanutils.ConvertUtils;
  import javax.servlet.jsp.JspException;
  import org.jboss.seam.ui.converter.EntityConverter;
  
  public class ConvertEntityTag extends javax.faces.webapp.ConverterELTag 
  {
  
  // Fields
  // Setters
  
    protected Converter createConverter() throws JspException 
    {
      EntityConverter converter = new EntityConverter();
      _setProperties(converter);
      return converter;
    }
  
    // Support method to wire in attributes
    private void _setProperties(EntityConverter converter) throws JspException 
    {
      FacesContext facesContext = FacesContext.getCurrentInstance();
    }
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/SelectItemsTag.java
  
  Index: SelectItemsTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import java.lang.Object ;
  import java.lang.Boolean ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlSelectItems;
  
  public class SelectItemsTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
   	/*
  	 * var
  	 * defines the name of the local variable that holds the current object during iteration
  	 */
  	 private String  _var = null;
  
     	/*
  	 * label
  	 * the label to be used when rendering the SelectItem. Can reference the var variable
  	 */
  	 private String  _label = null;
  
    	/*
  	 * disabled
  	 * if true the SelectItem will be rendered disabled. Can reference the var variable
  	 */
  	 private String  _disabled = null;
  
    	/*
  	 * hideNoSelectionLabel
  	 * if true, the noSelectionLabel will be hidden when a value is selected
  	 */
  	 private String  _hideNoSelectionLabel = null;
  
      	/*
  	 * noSelectionLabel
  	 * specifies the (optional) label to place at the top of list (if required="true" is also specified then selecting this value will cause a validation error)
  	 */
  	 private String  _noSelectionLabel = null;
  
     // Setters
   	/*
  	 * var
  	 * defines the name of the local variable that holds the current object during iteration
  	 */
  	/**
  	 * defines the name of the local variable that holds the current object during iteration
  	 * Setter for var
  	 * @param var - new value
  	 */
  	 public void setVar( String  __var ){
  		this._var = __var;
       }
  	 
       	/*
  	 * label
  	 * the label to be used when rendering the SelectItem. Can reference the var variable
  	 */
  	/**
  	 * the label to be used when rendering the SelectItem. Can reference the var variable
  	 * Setter for label
  	 * @param label - new value
  	 */
  	 public void setLabel( String  __label ){
  		this._label = __label;
       }
  	 
     	/*
  	 * disabled
  	 * if true the SelectItem will be rendered disabled. Can reference the var variable
  	 */
  	/**
  	 * if true the SelectItem will be rendered disabled. Can reference the var variable
  	 * Setter for disabled
  	 * @param disabled - new value
  	 */
  	 public void setDisabled( String  __disabled ){
  		this._disabled = __disabled;
       }
  	 
     	/*
  	 * hideNoSelectionLabel
  	 * if true, the noSelectionLabel will be hidden when a value is selected
  	 */
  	/**
  	 * if true, the noSelectionLabel will be hidden when a value is selected
  	 * Setter for hideNoSelectionLabel
  	 * @param hideNoSelectionLabel - new value
  	 */
  	 public void setHideNoSelectionLabel( String  __hideNoSelectionLabel ){
  		this._hideNoSelectionLabel = __hideNoSelectionLabel;
       }
  	 
         	/*
  	 * noSelectionLabel
  	 * specifies the (optional) label to place at the top of list (if required="true" is also specified then selecting this value will cause a validation error)
  	 */
  	/**
  	 * specifies the (optional) label to place at the top of list (if required="true" is also specified then selecting this value will cause a validation error)
  	 * Setter for noSelectionLabel
  	 * @param noSelectionLabel - new value
  	 */
  	 public void setNoSelectionLabel( String  __noSelectionLabel ){
  		this._noSelectionLabel = __noSelectionLabel;
       }
  	 
        // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
   	    this._var = null;
     	    this._label = null;
    	    this._disabled = null;
    	    this._hideNoSelectionLabel = null;
      	    this._noSelectionLabel = null;
     	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
   		 		 			setStringProperty(component, "var",this._var);
  		    		 		 			// TODO - handle object
  			setStringProperty(component, "label",this._label);
  		   		 		 			setBooleanProperty(component, "disabled",this._disabled); 
  		   		 		 			setBooleanProperty(component, "hideNoSelectionLabel",this._hideNoSelectionLabel); 
  		     		 		 			setStringProperty(component, "noSelectionLabel",this._noSelectionLabel);
  		       }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.SelectItems";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return null;
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/FileUploadTag.java
  
  Index: FileUploadTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import javax.faces.convert.Converter ;
  import java.io.InputStream ;
  import java.lang.Integer ;
  import java.lang.Object ;
  import javax.faces.el.MethodBinding ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlFileUpload;
  
  public class FileUploadTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
    	/*
  	 * localValueSet
  	 * localValueSet
  	 */
  	 private String  _localValueSet = null;
  
     	/*
  	 * fileSize
  	 * this value binding receives the file size (optional).
  	 */
  	 private String  _fileSize = null;
  
      	/*
  	 * styleClass
  	 * Corresponds to the HTML class attribute
  	 */
  	 private String  _styleClass = null;
  
    	/*
  	 * localContentType
  	 * localContentType
  	 */
  	 private String  _localContentType = null;
  
    	/*
  	 * requiredMessage
  	 * requiredMessage
  	 */
  	 private String  _requiredMessage = null;
  
    	/*
  	 * localFileSize
  	 * localFileSize
  	 */
  	 private String  _localFileSize = null;
  
    	/*
  	 * style
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 */
  	 private String  _style = null;
  
    	/*
  	 * accept
  	 * a comma-separated list of content types to accept, may not be supported by the browser. E.g. "images/png,images/jpg", "images/*".
  	 */
  	 private String  _accept = null;
  
     	/*
  	 * localFileName
  	 * localFileName
  	 */
  	 private String  _localFileName = null;
  
     	/*
  	 * required
  	 * required
  	 */
  	 private String  _required = null;
  
    	/*
  	 * validatorMessage
  	 * validatorMessage
  	 */
  	 private String  _validatorMessage = null;
  
    	/*
  	 * valid
  	 * valid
  	 */
  	 private String  _valid = null;
  
    	/*
  	 * valueChangeListener
  	 * valueChangeListener
  	 */
  	 private String  _valueChangeListener = null;
  
    	/*
  	 * contentType
  	 * the property to receive the contentType
  	 */
  	 private String  _contentType = null;
  
    	/*
  	 * localInputStream
  	 * localInputStream
  	 */
  	 private String  _localInputStream = null;
  
    	/*
  	 * validator
  	 * validator
  	 */
  	 private String  _validator = null;
  
    	/*
  	 * fileName
  	 * this value binding receives the filename (optional).
  	 */
  	 private String  _fileName = null;
  
    	/*
  	 * converterMessage
  	 * converterMessage
  	 */
  	 private String  _converterMessage = null;
  
     	/*
  	 * immediate
  	 * immediate
  	 */
  	 private String  _immediate = null;
  
    	/*
  	 * data
  	 * this value binding receives the file's content type (optional).
  	 */
  	 private String  _data = null;
  
     // Setters
     	/*
  	 * localValueSet
  	 * localValueSet
  	 */
  	/**
  	 * localValueSet
  	 * Setter for localValueSet
  	 * @param localValueSet - new value
  	 */
  	 public void setLocalValueSet( String  __localValueSet ){
  		this._localValueSet = __localValueSet;
       }
  	 
       	/*
  	 * fileSize
  	 * this value binding receives the file size (optional).
  	 */
  	/**
  	 * this value binding receives the file size (optional).
  	 * Setter for fileSize
  	 * @param fileSize - new value
  	 */
  	 public void setFileSize( String  __fileSize ){
  		this._fileSize = __fileSize;
       }
  	 
         	/*
  	 * styleClass
  	 * Corresponds to the HTML class attribute
  	 */
  	/**
  	 * Corresponds to the HTML class attribute
  	 * Setter for styleClass
  	 * @param styleClass - new value
  	 */
  	 public void setStyleClass( String  __styleClass ){
  		this._styleClass = __styleClass;
       }
  	 
     	/*
  	 * localContentType
  	 * localContentType
  	 */
  	/**
  	 * localContentType
  	 * Setter for localContentType
  	 * @param localContentType - new value
  	 */
  	 public void setLocalContentType( String  __localContentType ){
  		this._localContentType = __localContentType;
       }
  	 
     	/*
  	 * requiredMessage
  	 * requiredMessage
  	 */
  	/**
  	 * requiredMessage
  	 * Setter for requiredMessage
  	 * @param requiredMessage - new value
  	 */
  	 public void setRequiredMessage( String  __requiredMessage ){
  		this._requiredMessage = __requiredMessage;
       }
  	 
     	/*
  	 * localFileSize
  	 * localFileSize
  	 */
  	/**
  	 * localFileSize
  	 * Setter for localFileSize
  	 * @param localFileSize - new value
  	 */
  	 public void setLocalFileSize( String  __localFileSize ){
  		this._localFileSize = __localFileSize;
       }
  	 
     	/*
  	 * style
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 */
  	/**
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 * Setter for style
  	 * @param style - new value
  	 */
  	 public void setStyle( String  __style ){
  		this._style = __style;
       }
  	 
     	/*
  	 * accept
  	 * a comma-separated list of content types to accept, may not be supported by the browser. E.g. "images/png,images/jpg", "images/*".
  	 */
  	/**
  	 * a comma-separated list of content types to accept, may not be supported by the browser. E.g. "images/png,images/jpg", "images/*".
  	 * Setter for accept
  	 * @param accept - new value
  	 */
  	 public void setAccept( String  __accept ){
  		this._accept = __accept;
       }
  	 
       	/*
  	 * localFileName
  	 * localFileName
  	 */
  	/**
  	 * localFileName
  	 * Setter for localFileName
  	 * @param localFileName - new value
  	 */
  	 public void setLocalFileName( String  __localFileName ){
  		this._localFileName = __localFileName;
       }
  	 
       	/*
  	 * required
  	 * required
  	 */
  	/**
  	 * required
  	 * Setter for required
  	 * @param required - new value
  	 */
  	 public void setRequired( String  __required ){
  		this._required = __required;
       }
  	 
     	/*
  	 * validatorMessage
  	 * validatorMessage
  	 */
  	/**
  	 * validatorMessage
  	 * Setter for validatorMessage
  	 * @param validatorMessage - new value
  	 */
  	 public void setValidatorMessage( String  __validatorMessage ){
  		this._validatorMessage = __validatorMessage;
       }
  	 
     	/*
  	 * valid
  	 * valid
  	 */
  	/**
  	 * valid
  	 * Setter for valid
  	 * @param valid - new value
  	 */
  	 public void setValid( String  __valid ){
  		this._valid = __valid;
       }
  	 
     	/*
  	 * valueChangeListener
  	 * valueChangeListener
  	 */
  	/**
  	 * valueChangeListener
  	 * Setter for valueChangeListener
  	 * @param valueChangeListener - new value
  	 */
  	 public void setValueChangeListener( String  __valueChangeListener ){
  		this._valueChangeListener = __valueChangeListener;
       }
  	 
     	/*
  	 * contentType
  	 * the property to receive the contentType
  	 */
  	/**
  	 * the property to receive the contentType
  	 * Setter for contentType
  	 * @param contentType - new value
  	 */
  	 public void setContentType( String  __contentType ){
  		this._contentType = __contentType;
       }
  	 
     	/*
  	 * localInputStream
  	 * localInputStream
  	 */
  	/**
  	 * localInputStream
  	 * Setter for localInputStream
  	 * @param localInputStream - new value
  	 */
  	 public void setLocalInputStream( String  __localInputStream ){
  		this._localInputStream = __localInputStream;
       }
  	 
     	/*
  	 * validator
  	 * validator
  	 */
  	/**
  	 * validator
  	 * Setter for validator
  	 * @param validator - new value
  	 */
  	 public void setValidator( String  __validator ){
  		this._validator = __validator;
       }
  	 
     	/*
  	 * fileName
  	 * this value binding receives the filename (optional).
  	 */
  	/**
  	 * this value binding receives the filename (optional).
  	 * Setter for fileName
  	 * @param fileName - new value
  	 */
  	 public void setFileName( String  __fileName ){
  		this._fileName = __fileName;
       }
  	 
     	/*
  	 * converterMessage
  	 * converterMessage
  	 */
  	/**
  	 * converterMessage
  	 * Setter for converterMessage
  	 * @param converterMessage - new value
  	 */
  	 public void setConverterMessage( String  __converterMessage ){
  		this._converterMessage = __converterMessage;
       }
  	 
       	/*
  	 * immediate
  	 * immediate
  	 */
  	/**
  	 * immediate
  	 * Setter for immediate
  	 * @param immediate - new value
  	 */
  	 public void setImmediate( String  __immediate ){
  		this._immediate = __immediate;
       }
  	 
     	/*
  	 * data
  	 * this value binding receives the file's content type (optional).
  	 */
  	/**
  	 * this value binding receives the file's content type (optional).
  	 * Setter for data
  	 * @param data - new value
  	 */
  	 public void setData( String  __data ){
  		this._data = __data;
       }
  	 
        // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
    	    this._localValueSet = null;
     	    this._fileSize = null;
      	    this._styleClass = null;
    	    this._localContentType = null;
    	    this._requiredMessage = null;
    	    this._localFileSize = null;
    	    this._style = null;
    	    this._accept = null;
     	    this._localFileName = null;
     	    this._required = null;
    	    this._validatorMessage = null;
    	    this._valid = null;
    	    this._valueChangeListener = null;
    	    this._contentType = null;
    	    this._localInputStream = null;
    	    this._validator = null;
    	    this._fileName = null;
    	    this._converterMessage = null;
     	    this._immediate = null;
    	    this._data = null;
     	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
    		 		 			// Simple type - boolean
  			setBooleanProperty(component, "localValueSet",this._localValueSet); 
  		    		 		 			setIntegerProperty(component, "fileSize",this._fileSize); 
  		     		 		 			setStringProperty(component, "styleClass",this._styleClass);
  		   		 		 			setStringProperty(component, "localContentType",this._localContentType);
  		   		 		 			setStringProperty(component, "requiredMessage",this._requiredMessage);
  		   		 		 			setIntegerProperty(component, "localFileSize",this._localFileSize); 
  		   		 		 			setStringProperty(component, "style",this._style);
  		   		 		 			setStringProperty(component, "accept",this._accept);
  		    		 		 			setStringProperty(component, "localFileName",this._localFileName);
  		    		 		 			// Simple type - boolean
  			setBooleanProperty(component, "required",this._required); 
  		   		 		 			setStringProperty(component, "validatorMessage",this._validatorMessage);
  		   		 		 			// Simple type - boolean
  			setBooleanProperty(component, "valid",this._valid); 
  		   		 		 			setValueChangedListenerProperty(component, this._valueChangeListener);
  		   		 		 			setStringProperty(component, "contentType",this._contentType);
  		   		 		 			// TODO - setup properties for other cases.
  			// name localInputStream with type java.io.InputStream
  		   		 		 			setValidatorProperty(component, this._validator);
  		   		 		 			setStringProperty(component, "fileName",this._fileName);
  		   		 		 			setStringProperty(component, "converterMessage",this._converterMessage);
  		    		 		 			// Simple type - boolean
  			setBooleanProperty(component, "immediate",this._immediate); 
  		   		 		 			// TODO - handle object
  			setStringProperty(component, "data",this._data);
  		       }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.FileUpload";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return "org.jboss.seam.ui.FileUploadRenderer";
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/ConvertEnumTag.java
  
  Index: ConvertEnumTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import javax.faces.webapp.ConverterELTag ;
  import javax.faces.component.UIComponent;
  import javax.faces.convert.Converter;
  import javax.faces.webapp.UIComponentTag;
  import javax.faces.context.FacesContext;
  import javax.faces.el.ValueBinding;
  import org.apache.commons.beanutils.ConvertUtils;
  import javax.servlet.jsp.JspException;
  import org.jboss.seam.ui.converter.EnumConverter;
  
  public class ConvertEnumTag extends javax.faces.webapp.ConverterELTag 
  {
  
  // Fields
  // Setters
  
    protected Converter createConverter() throws JspException 
    {
      EnumConverter converter = new EnumConverter();
      _setProperties(converter);
      return converter;
    }
  
    // Support method to wire in attributes
    private void _setProperties(EnumConverter converter) throws JspException 
    {
      FacesContext facesContext = FacesContext.getCurrentInstance();
    }
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/SelectionTag.java
  
  Index: SelectionTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import java.lang.Object ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlSelection;
  
  public class SelectionTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
   	/*
  	 * var
  	 * var
  	 */
  	 private String  _var = null;
  
     	/*
  	 * dataModel
  	 * dataModel
  	 */
  	 private String  _dataModel = null;
  
       	/*
  	 * name
  	 * name
  	 */
  	 private String  _name = null;
  
    // Setters
   	/*
  	 * var
  	 * var
  	 */
  	/**
  	 * var
  	 * Setter for var
  	 * @param var - new value
  	 */
  	 public void setVar( String  __var ){
  		this._var = __var;
       }
  	 
       	/*
  	 * dataModel
  	 * dataModel
  	 */
  	/**
  	 * dataModel
  	 * Setter for dataModel
  	 * @param dataModel - new value
  	 */
  	 public void setDataModel( String  __dataModel ){
  		this._dataModel = __dataModel;
       }
  	 
           	/*
  	 * name
  	 * name
  	 */
  	/**
  	 * name
  	 * Setter for name
  	 * @param name - new value
  	 */
  	 public void setName( String  __name ){
  		this._name = __name;
       }
  	 
      // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
   	    this._var = null;
     	    this._dataModel = null;
       	    this._name = null;
    	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
   		 		 			setStringProperty(component, "var",this._var);
  		    		 		 			setStringProperty(component, "dataModel",this._dataModel);
  		      		 		 			setStringProperty(component, "name",this._name);
  		      }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.Selection";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return null;
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/ModelValidatorTag.java
  
  Index: ModelValidatorTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import javax.faces.webapp.ValidatorELTag ;
  import javax.faces.component.UIComponent;
  import javax.faces.webapp.UIComponentTag;
  import javax.faces.validator.Validator;
  import org.apache.commons.beanutils.ConvertUtils;
  import javax.faces.context.FacesContext;
  import javax.servlet.jsp.JspException;
  import javax.faces.el.ValueBinding;
  import org.jboss.seam.ui.validator.ModelValidator;
  
  public class ModelValidatorTag extends javax.faces.webapp.ValidatorELTag {
  
  // Fields
  // Setters
  
    protected Validator createValidator() throws JspException
    {
      ModelValidator validator = new ModelValidator();
      _setProperties(validator);
      return validator;
    }
  
    // Support method to wire in properties
    private void _setProperties(ModelValidator validator) throws JspException 
    {
      FacesContext facesContext = FacesContext.getCurrentInstance();
    }
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/LinkTag.java
  
  Index: LinkTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import javax.faces.convert.Converter ;
  import java.lang.Object ;
  import javax.faces.el.MethodBinding ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlLink;
  
  public class LinkTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
   	/*
  	 * actionListener
  	 * MethodBinding pointing at method accepting  an ActionEvent with return type void
  	 */
  	 private String  _actionListener = null;
  
      	/*
  	 * title
  	 * Advisory title information about markup elements generated for this component
  	 */
  	 private String  _title = null;
  
     	/*
  	 * shape
  	 * default|rect|circle|poly [CI]
              This attribute specifies the shape of a region. Possible values:
              
              * default: Specifies the entire region.
              * rect: Define a rectangular region.
              * circle: Define a circular region.
              * poly: Define a polygonal region.
  	 */
  	 private String  _shape = null;
  
    	/*
  	 * target
  	 * This attribute specifies the name of a frame where a document is to be opened.
              
              By assigning a name to a frame via the name attribute, authors can refer to it as the "target" of links defined by other elements
  	 */
  	 private String  _target = null;
  
    	/*
  	 * charset
  	 * The character encoding of a resource designated by this hyperlink
  	 */
  	 private String  _charset = null;
  
      	/*
  	 * dir
  	 * Direction indication for text that does not inherit
  			directionality. Valid values are "LTR" (left-to-right)
  			and "RTL" (right-to-left)
  	 */
  	 private String  _dir = null;
  
    	/*
  	 * rev
  	 * A reverse link from the anchor specified by this hyperlink to the current document. The value of this attribute is a space-separated list of link types
  	 */
  	 private String  _rev = null;
  
    	/*
  	 * styleClass
  	 * Corresponds to the HTML class attribute
  	 */
  	 private String  _styleClass = null;
  
    	/*
  	 * pageflow
  	 * a pageflow definition to begin. (This is only useful when propagation="begin" or propagation="join".)
  	 */
  	 private String  _pageflow = null;
  
    	/*
  	 * outcome
  	 * outcome
  	 */
  	 private String  _outcome = null;
  
    	/*
  	 * accesskey
  	 * This attribute assigns an access key to an element. An access key is a single character from the document character set. Note: Authors should consider the input method of the expected reader when specifying an accesskey
  	 */
  	 private String  _accesskey = null;
  
    	/*
  	 * fragment
  	 * the fragment identifier to link to.
  	 */
  	 private String  _fragment = null;
  
    	/*
  	 * onkeypress
  	 * HTML: a script expression; a key is pressed and released
  	 */
  	 private String  _onkeypress = null;
  
    	/*
  	 * ondblclick
  	 * HTML: a script expression; a pointer button is double-clicked
  	 */
  	 private String  _ondblclick = null;
  
    	/*
  	 * propagation
  	 * determines the conversation propagation style: begin, join, nest, none or end.
  	 */
  	 private String  _propagation = null;
  
    	/*
  	 * style
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 */
  	 private String  _style = null;
  
     	/*
  	 * onmouseover
  	 * HTML: a script expression; a pointer is moved onto
  	 */
  	 private String  _onmouseover = null;
  
    	/*
  	 * onblur
  	 * JavaScript code. The onblur event occurs when an element loses focus either by the pointing device or by tabbing navigation. It may be used with the same elements as onfocus
  	 */
  	 private String  _onblur = null;
  
    	/*
  	 * view
  	 * the JSF view id to link to.
  	 */
  	 private String  _view = null;
  
    	/*
  	 * action
  	 * MethodBinding pointing at the application action to be invoked,
              if this UIComponent is activated by the user, during the Apply
              Request Values or Invoke Application phase of the request
              processing lifecycle, depending on the value of the immediate
              property
  	 */
  	 private String  _action = null;
  
    	/*
  	 * onkeyup
  	 * HTML: a script expression; a key is released
  	 */
  	 private String  _onkeyup = null;
  
     	/*
  	 * tabindex
  	 * This attribute specifies the position of the current element in the tabbing order for the current document. This value must be a number between 0 and 32767. User agents should ignore leading zeros
  	 */
  	 private String  _tabindex = null;
  
    	/*
  	 * hreflang
  	 * Base language of a resource specified with the href attribute; hreflang may only be used with href
  	 */
  	 private String  _hreflang = null;
  
     	/*
  	 * type
  	 * The content type of the resource designated by this hyperlink
  	 */
  	 private String  _type = null;
  
    	/*
  	 * lang
  	 * Code describing the language used in the generated markup for this component
  	 */
  	 private String  _lang = null;
  
    	/*
  	 * disabled
  	 * disabled
  	 */
  	 private String  _disabled = null;
  
    	/*
  	 * onclick
  	 * HTML: a script expression; a pointer button is clicked
  	 */
  	 private String  _onclick = null;
  
     	/*
  	 * onmouseout
  	 * HTML: a script expression; a pointer is moved away
  	 */
  	 private String  _onmouseout = null;
  
    	/*
  	 * onkeydown
  	 * HTML: a script expression; a key is pressed down
  	 */
  	 private String  _onkeydown = null;
  
    	/*
  	 * onmousedown
  	 * HTML: script expression; a pointer button is pressed down
  	 */
  	 private String  _onmousedown = null;
  
    	/*
  	 * rel
  	 * The relationship from the current document to the anchor specified by this hyperlink. The value of this attribute is a space-separated list of link types
  	 */
  	 private String  _rel = null;
  
    	/*
  	 * immediate
  	 * True means, that the default ActionListener should be executed
              immediately (i.e. during Apply Request Values phase of the
              request processing lifecycle), rather than waiting until the
              Invoke Application phase
  	 */
  	 private String  _immediate = null;
  
    	/*
  	 * onfocus
  	 * JavaScript code. The onfocus event occurs when an element gets focus.
  	 */
  	 private String  _onfocus = null;
  
    	/*
  	 * onmouseup
  	 * HTML: script expression; a pointer button is released
  	 */
  	 private String  _onmouseup = null;
  
      	/*
  	 * onmousemove
  	 * HTML: a script expression; a pointer is moved within
  	 */
  	 private String  _onmousemove = null;
  
    	/*
  	 * coords
  	 * This attribute specifies the position and shape on the screen. The number and order of values depends on the shape being defined. Possible combinations:
              
              * rect: left-x, top-y, right-x, bottom-y.
              * circle: center-x, center-y, radius. Note. When the radius value is percentage value, user agents should calculate the final radius value based on the associated object's width and height. The radius should be the smaller value of the two.
              * poly: x1, y1, x2, y2, ..., xN, yN. The first x and y coordinate pair and the last should be the same to close the polygon. When these coordinate values are not the same, user agents should infer an additional coordinate pair to close the polygon.
              
              Coordinates are relative to the top, left corner of the object. All values are lengths. All values are separated by commas
  	 */
  	 private String  _coords = null;
  
   // Setters
   	/*
  	 * actionListener
  	 * MethodBinding pointing at method accepting  an ActionEvent with return type void
  	 */
  	/**
  	 * MethodBinding pointing at method accepting  an ActionEvent with return type void
  	 * Setter for actionListener
  	 * @param actionListener - new value
  	 */
  	 public void setActionListener( String  __actionListener ){
  		this._actionListener = __actionListener;
       }
  	 
         	/*
  	 * title
  	 * Advisory title information about markup elements generated for this component
  	 */
  	/**
  	 * Advisory title information about markup elements generated for this component
  	 * Setter for title
  	 * @param title - new value
  	 */
  	 public void setTitle( String  __title ){
  		this._title = __title;
       }
  	 
       	/*
  	 * shape
  	 * default|rect|circle|poly [CI]
              This attribute specifies the shape of a region. Possible values:
              
              * default: Specifies the entire region.
              * rect: Define a rectangular region.
              * circle: Define a circular region.
              * poly: Define a polygonal region.
  	 */
  	/**
  	 * default|rect|circle|poly [CI]
              This attribute specifies the shape of a region. Possible values:
              
              * default: Specifies the entire region.
              * rect: Define a rectangular region.
              * circle: Define a circular region.
              * poly: Define a polygonal region.
  	 * Setter for shape
  	 * @param shape - new value
  	 */
  	 public void setShape( String  __shape ){
  		this._shape = __shape;
       }
  	 
     	/*
  	 * target
  	 * This attribute specifies the name of a frame where a document is to be opened.
              
              By assigning a name to a frame via the name attribute, authors can refer to it as the "target" of links defined by other elements
  	 */
  	/**
  	 * This attribute specifies the name of a frame where a document is to be opened.
              
              By assigning a name to a frame via the name attribute, authors can refer to it as the "target" of links defined by other elements
  	 * Setter for target
  	 * @param target - new value
  	 */
  	 public void setTarget( String  __target ){
  		this._target = __target;
       }
  	 
     	/*
  	 * charset
  	 * The character encoding of a resource designated by this hyperlink
  	 */
  	/**
  	 * The character encoding of a resource designated by this hyperlink
  	 * Setter for charset
  	 * @param charset - new value
  	 */
  	 public void setCharset( String  __charset ){
  		this._charset = __charset;
       }
  	 
         	/*
  	 * dir
  	 * Direction indication for text that does not inherit
  			directionality. Valid values are "LTR" (left-to-right)
  			and "RTL" (right-to-left)
  	 */
  	/**
  	 * Direction indication for text that does not inherit
  			directionality. Valid values are "LTR" (left-to-right)
  			and "RTL" (right-to-left)
  	 * Setter for dir
  	 * @param dir - new value
  	 */
  	 public void setDir( String  __dir ){
  		this._dir = __dir;
       }
  	 
     	/*
  	 * rev
  	 * A reverse link from the anchor specified by this hyperlink to the current document. The value of this attribute is a space-separated list of link types
  	 */
  	/**
  	 * A reverse link from the anchor specified by this hyperlink to the current document. The value of this attribute is a space-separated list of link types
  	 * Setter for rev
  	 * @param rev - new value
  	 */
  	 public void setRev( String  __rev ){
  		this._rev = __rev;
       }
  	 
     	/*
  	 * styleClass
  	 * Corresponds to the HTML class attribute
  	 */
  	/**
  	 * Corresponds to the HTML class attribute
  	 * Setter for styleClass
  	 * @param styleClass - new value
  	 */
  	 public void setStyleClass( String  __styleClass ){
  		this._styleClass = __styleClass;
       }
  	 
     	/*
  	 * pageflow
  	 * a pageflow definition to begin. (This is only useful when propagation="begin" or propagation="join".)
  	 */
  	/**
  	 * a pageflow definition to begin. (This is only useful when propagation="begin" or propagation="join".)
  	 * Setter for pageflow
  	 * @param pageflow - new value
  	 */
  	 public void setPageflow( String  __pageflow ){
  		this._pageflow = __pageflow;
       }
  	 
     	/*
  	 * outcome
  	 * outcome
  	 */
  	/**
  	 * outcome
  	 * Setter for outcome
  	 * @param outcome - new value
  	 */
  	 public void setOutcome( String  __outcome ){
  		this._outcome = __outcome;
       }
  	 
     	/*
  	 * accesskey
  	 * This attribute assigns an access key to an element. An access key is a single character from the document character set. Note: Authors should consider the input method of the expected reader when specifying an accesskey
  	 */
  	/**
  	 * This attribute assigns an access key to an element. An access key is a single character from the document character set. Note: Authors should consider the input method of the expected reader when specifying an accesskey
  	 * Setter for accesskey
  	 * @param accesskey - new value
  	 */
  	 public void setAccesskey( String  __accesskey ){
  		this._accesskey = __accesskey;
       }
  	 
     	/*
  	 * fragment
  	 * the fragment identifier to link to.
  	 */
  	/**
  	 * the fragment identifier to link to.
  	 * Setter for fragment
  	 * @param fragment - new value
  	 */
  	 public void setFragment( String  __fragment ){
  		this._fragment = __fragment;
       }
  	 
     	/*
  	 * onkeypress
  	 * HTML: a script expression; a key is pressed and released
  	 */
  	/**
  	 * HTML: a script expression; a key is pressed and released
  	 * Setter for onkeypress
  	 * @param onkeypress - new value
  	 */
  	 public void setOnkeypress( String  __onkeypress ){
  		this._onkeypress = __onkeypress;
       }
  	 
     	/*
  	 * ondblclick
  	 * HTML: a script expression; a pointer button is double-clicked
  	 */
  	/**
  	 * HTML: a script expression; a pointer button is double-clicked
  	 * Setter for ondblclick
  	 * @param ondblclick - new value
  	 */
  	 public void setOndblclick( String  __ondblclick ){
  		this._ondblclick = __ondblclick;
       }
  	 
     	/*
  	 * propagation
  	 * determines the conversation propagation style: begin, join, nest, none or end.
  	 */
  	/**
  	 * determines the conversation propagation style: begin, join, nest, none or end.
  	 * Setter for propagation
  	 * @param propagation - new value
  	 */
  	 public void setPropagation( String  __propagation ){
  		this._propagation = __propagation;
       }
  	 
     	/*
  	 * style
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 */
  	/**
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 * Setter for style
  	 * @param style - new value
  	 */
  	 public void setStyle( String  __style ){
  		this._style = __style;
       }
  	 
       	/*
  	 * onmouseover
  	 * HTML: a script expression; a pointer is moved onto
  	 */
  	/**
  	 * HTML: a script expression; a pointer is moved onto
  	 * Setter for onmouseover
  	 * @param onmouseover - new value
  	 */
  	 public void setOnmouseover( String  __onmouseover ){
  		this._onmouseover = __onmouseover;
       }
  	 
     	/*
  	 * onblur
  	 * JavaScript code. The onblur event occurs when an element loses focus either by the pointing device or by tabbing navigation. It may be used with the same elements as onfocus
  	 */
  	/**
  	 * JavaScript code. The onblur event occurs when an element loses focus either by the pointing device or by tabbing navigation. It may be used with the same elements as onfocus
  	 * Setter for onblur
  	 * @param onblur - new value
  	 */
  	 public void setOnblur( String  __onblur ){
  		this._onblur = __onblur;
       }
  	 
     	/*
  	 * view
  	 * the JSF view id to link to.
  	 */
  	/**
  	 * the JSF view id to link to.
  	 * Setter for view
  	 * @param view - new value
  	 */
  	 public void setView( String  __view ){
  		this._view = __view;
       }
  	 
     	/*
  	 * action
  	 * MethodBinding pointing at the application action to be invoked,
              if this UIComponent is activated by the user, during the Apply
              Request Values or Invoke Application phase of the request
              processing lifecycle, depending on the value of the immediate
              property
  	 */
  	/**
  	 * MethodBinding pointing at the application action to be invoked,
              if this UIComponent is activated by the user, during the Apply
              Request Values or Invoke Application phase of the request
              processing lifecycle, depending on the value of the immediate
              property
  	 * Setter for action
  	 * @param action - new value
  	 */
  	 public void setAction( String  __action ){
  		this._action = __action;
       }
  	 
     	/*
  	 * onkeyup
  	 * HTML: a script expression; a key is released
  	 */
  	/**
  	 * HTML: a script expression; a key is released
  	 * Setter for onkeyup
  	 * @param onkeyup - new value
  	 */
  	 public void setOnkeyup( String  __onkeyup ){
  		this._onkeyup = __onkeyup;
       }
  	 
       	/*
  	 * tabindex
  	 * This attribute specifies the position of the current element in the tabbing order for the current document. This value must be a number between 0 and 32767. User agents should ignore leading zeros
  	 */
  	/**
  	 * This attribute specifies the position of the current element in the tabbing order for the current document. This value must be a number between 0 and 32767. User agents should ignore leading zeros
  	 * Setter for tabindex
  	 * @param tabindex - new value
  	 */
  	 public void setTabindex( String  __tabindex ){
  		this._tabindex = __tabindex;
       }
  	 
     	/*
  	 * hreflang
  	 * Base language of a resource specified with the href attribute; hreflang may only be used with href
  	 */
  	/**
  	 * Base language of a resource specified with the href attribute; hreflang may only be used with href
  	 * Setter for hreflang
  	 * @param hreflang - new value
  	 */
  	 public void setHreflang( String  __hreflang ){
  		this._hreflang = __hreflang;
       }
  	 
       	/*
  	 * type
  	 * The content type of the resource designated by this hyperlink
  	 */
  	/**
  	 * The content type of the resource designated by this hyperlink
  	 * Setter for type
  	 * @param type - new value
  	 */
  	 public void setType( String  __type ){
  		this._type = __type;
       }
  	 
     	/*
  	 * lang
  	 * Code describing the language used in the generated markup for this component
  	 */
  	/**
  	 * Code describing the language used in the generated markup for this component
  	 * Setter for lang
  	 * @param lang - new value
  	 */
  	 public void setLang( String  __lang ){
  		this._lang = __lang;
       }
  	 
     	/*
  	 * disabled
  	 * disabled
  	 */
  	/**
  	 * disabled
  	 * Setter for disabled
  	 * @param disabled - new value
  	 */
  	 public void setDisabled( String  __disabled ){
  		this._disabled = __disabled;
       }
  	 
     	/*
  	 * onclick
  	 * HTML: a script expression; a pointer button is clicked
  	 */
  	/**
  	 * HTML: a script expression; a pointer button is clicked
  	 * Setter for onclick
  	 * @param onclick - new value
  	 */
  	 public void setOnclick( String  __onclick ){
  		this._onclick = __onclick;
       }
  	 
       	/*
  	 * onmouseout
  	 * HTML: a script expression; a pointer is moved away
  	 */
  	/**
  	 * HTML: a script expression; a pointer is moved away
  	 * Setter for onmouseout
  	 * @param onmouseout - new value
  	 */
  	 public void setOnmouseout( String  __onmouseout ){
  		this._onmouseout = __onmouseout;
       }
  	 
     	/*
  	 * onkeydown
  	 * HTML: a script expression; a key is pressed down
  	 */
  	/**
  	 * HTML: a script expression; a key is pressed down
  	 * Setter for onkeydown
  	 * @param onkeydown - new value
  	 */
  	 public void setOnkeydown( String  __onkeydown ){
  		this._onkeydown = __onkeydown;
       }
  	 
     	/*
  	 * onmousedown
  	 * HTML: script expression; a pointer button is pressed down
  	 */
  	/**
  	 * HTML: script expression; a pointer button is pressed down
  	 * Setter for onmousedown
  	 * @param onmousedown - new value
  	 */
  	 public void setOnmousedown( String  __onmousedown ){
  		this._onmousedown = __onmousedown;
       }
  	 
     	/*
  	 * rel
  	 * The relationship from the current document to the anchor specified by this hyperlink. The value of this attribute is a space-separated list of link types
  	 */
  	/**
  	 * The relationship from the current document to the anchor specified by this hyperlink. The value of this attribute is a space-separated list of link types
  	 * Setter for rel
  	 * @param rel - new value
  	 */
  	 public void setRel( String  __rel ){
  		this._rel = __rel;
       }
  	 
     	/*
  	 * immediate
  	 * True means, that the default ActionListener should be executed
              immediately (i.e. during Apply Request Values phase of the
              request processing lifecycle), rather than waiting until the
              Invoke Application phase
  	 */
  	/**
  	 * True means, that the default ActionListener should be executed
              immediately (i.e. during Apply Request Values phase of the
              request processing lifecycle), rather than waiting until the
              Invoke Application phase
  	 * Setter for immediate
  	 * @param immediate - new value
  	 */
  	 public void setImmediate( String  __immediate ){
  		this._immediate = __immediate;
       }
  	 
     	/*
  	 * onfocus
  	 * JavaScript code. The onfocus event occurs when an element gets focus.
  	 */
  	/**
  	 * JavaScript code. The onfocus event occurs when an element gets focus.
  	 * Setter for onfocus
  	 * @param onfocus - new value
  	 */
  	 public void setOnfocus( String  __onfocus ){
  		this._onfocus = __onfocus;
       }
  	 
     	/*
  	 * onmouseup
  	 * HTML: script expression; a pointer button is released
  	 */
  	/**
  	 * HTML: script expression; a pointer button is released
  	 * Setter for onmouseup
  	 * @param onmouseup - new value
  	 */
  	 public void setOnmouseup( String  __onmouseup ){
  		this._onmouseup = __onmouseup;
       }
  	 
         	/*
  	 * onmousemove
  	 * HTML: a script expression; a pointer is moved within
  	 */
  	/**
  	 * HTML: a script expression; a pointer is moved within
  	 * Setter for onmousemove
  	 * @param onmousemove - new value
  	 */
  	 public void setOnmousemove( String  __onmousemove ){
  		this._onmousemove = __onmousemove;
       }
  	 
     	/*
  	 * coords
  	 * This attribute specifies the position and shape on the screen. The number and order of values depends on the shape being defined. Possible combinations:
              
              * rect: left-x, top-y, right-x, bottom-y.
              * circle: center-x, center-y, radius. Note. When the radius value is percentage value, user agents should calculate the final radius value based on the associated object's width and height. The radius should be the smaller value of the two.
              * poly: x1, y1, x2, y2, ..., xN, yN. The first x and y coordinate pair and the last should be the same to close the polygon. When these coordinate values are not the same, user agents should infer an additional coordinate pair to close the polygon.
              
              Coordinates are relative to the top, left corner of the object. All values are lengths. All values are separated by commas
  	 */
  	/**
  	 * This attribute specifies the position and shape on the screen. The number and order of values depends on the shape being defined. Possible combinations:
              
              * rect: left-x, top-y, right-x, bottom-y.
              * circle: center-x, center-y, radius. Note. When the radius value is percentage value, user agents should calculate the final radius value based on the associated object's width and height. The radius should be the smaller value of the two.
              * poly: x1, y1, x2, y2, ..., xN, yN. The first x and y coordinate pair and the last should be the same to close the polygon. When these coordinate values are not the same, user agents should infer an additional coordinate pair to close the polygon.
              
              Coordinates are relative to the top, left corner of the object. All values are lengths. All values are separated by commas
  	 * Setter for coords
  	 * @param coords - new value
  	 */
  	 public void setCoords( String  __coords ){
  		this._coords = __coords;
       }
  	 
    // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
   	    this._actionListener = null;
      	    this._title = null;
     	    this._shape = null;
    	    this._target = null;
    	    this._charset = null;
      	    this._dir = null;
    	    this._rev = null;
    	    this._styleClass = null;
    	    this._pageflow = null;
    	    this._outcome = null;
    	    this._accesskey = null;
    	    this._fragment = null;
    	    this._onkeypress = null;
    	    this._ondblclick = null;
    	    this._propagation = null;
    	    this._style = null;
     	    this._onmouseover = null;
    	    this._onblur = null;
    	    this._view = null;
    	    this._action = null;
    	    this._onkeyup = null;
     	    this._tabindex = null;
    	    this._hreflang = null;
     	    this._type = null;
    	    this._lang = null;
    	    this._disabled = null;
    	    this._onclick = null;
     	    this._onmouseout = null;
    	    this._onkeydown = null;
    	    this._onmousedown = null;
    	    this._rel = null;
    	    this._immediate = null;
    	    this._onfocus = null;
    	    this._onmouseup = null;
      	    this._onmousemove = null;
    	    this._coords = null;
   	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
   		 		 			setActionListenerProperty(component, this._actionListener);
  		     		 		 			setStringProperty(component, "title",this._title);
  		    		 		 			setStringProperty(component, "shape",this._shape);
  		   		 		 			setStringProperty(component, "target",this._target);
  		   		 		 			setStringProperty(component, "charset",this._charset);
  		     		 		 			setStringProperty(component, "dir",this._dir);
  		   		 		 			setStringProperty(component, "rev",this._rev);
  		   		 		 			setStringProperty(component, "styleClass",this._styleClass);
  		   		 		 			setStringProperty(component, "pageflow",this._pageflow);
  		   		 		 			setStringProperty(component, "outcome",this._outcome);
  		   		 		 			setStringProperty(component, "accesskey",this._accesskey);
  		   		 		 			setStringProperty(component, "fragment",this._fragment);
  		   		 		 			setStringProperty(component, "onkeypress",this._onkeypress);
  		   		 		 			setStringProperty(component, "ondblclick",this._ondblclick);
  		   		 		 			setStringProperty(component, "propagation",this._propagation);
  		   		 		 			setStringProperty(component, "style",this._style);
  		    		 		 			setStringProperty(component, "onmouseover",this._onmouseover);
  		   		 		 			setStringProperty(component, "onblur",this._onblur);
  		   		 		 			setStringProperty(component, "view",this._view);
  		   		 		 			setActionProperty(component, this._action);
  		   		 		 			setStringProperty(component, "onkeyup",this._onkeyup);
  		    		 		 			setStringProperty(component, "tabindex",this._tabindex);
  		   		 		 			setStringProperty(component, "hreflang",this._hreflang);
  		    		 		 			setStringProperty(component, "type",this._type);
  		   		 		 			setStringProperty(component, "lang",this._lang);
  		   		 		 			// Simple type - boolean
  			setBooleanProperty(component, "disabled",this._disabled); 
  		   		 		 			setStringProperty(component, "onclick",this._onclick);
  		    		 		 			setStringProperty(component, "onmouseout",this._onmouseout);
  		   		 		 			setStringProperty(component, "onkeydown",this._onkeydown);
  		   		 		 			setStringProperty(component, "onmousedown",this._onmousedown);
  		   		 		 			setStringProperty(component, "rel",this._rel);
  		   		 		 			// Simple type - boolean
  			setBooleanProperty(component, "immediate",this._immediate); 
  		   		 		 			setStringProperty(component, "onfocus",this._onfocus);
  		   		 		 			setStringProperty(component, "onmouseup",this._onmouseup);
  		     		 		 			setStringProperty(component, "onmousemove",this._onmousemove);
  		   		 		 			setStringProperty(component, "coords",this._coords);
  		     }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.Link";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return "org.jboss.seam.ui.LinkRenderer";
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/ValidateAllTag.java
  
  Index: ValidateAllTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlValidateAll;
  
  public class ValidateAllTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
    	/*
  	 * validatorsAdded
  	 * validatorsAdded
  	 */
  	 private String  _validatorsAdded = null;
  
      // Setters
     	/*
  	 * validatorsAdded
  	 * validatorsAdded
  	 */
  	/**
  	 * validatorsAdded
  	 * Setter for validatorsAdded
  	 * @param validatorsAdded - new value
  	 */
  	 public void setValidatorsAdded( String  __validatorsAdded ){
  		this._validatorsAdded = __validatorsAdded;
       }
  	 
          // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
    	    this._validatorsAdded = null;
      	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
    		 		 			// Simple type - boolean
  			setBooleanProperty(component, "validatorsAdded",this._validatorsAdded); 
  		        }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.ValidateAll";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return "org.jboss.seam.ui.ValidateAllRenderer";
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/LoadStyleTag.java
  
  Index: LoadStyleTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import java.lang.Object ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlLoadStyle;
  
  public class LoadStyleTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
   	/*
  	 * isolated
  	 * If isolated, any references to html ids will be resolved only within
  			this naming container
  	 */
  	 private String  _isolated = null;
  
    	/*
  	 * src
  	 * src
  	 */
  	 private String  _src = null;
  
       // Setters
   	/*
  	 * isolated
  	 * If isolated, any references to html ids will be resolved only within
  			this naming container
  	 */
  	/**
  	 * If isolated, any references to html ids will be resolved only within
  			this naming container
  	 * Setter for isolated
  	 * @param isolated - new value
  	 */
  	 public void setIsolated( String  __isolated ){
  		this._isolated = __isolated;
       }
  	 
     	/*
  	 * src
  	 * src
  	 */
  	/**
  	 * src
  	 * Setter for src
  	 * @param src - new value
  	 */
  	 public void setSrc( String  __src ){
  		this._src = __src;
       }
  	 
            // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
   	    this._isolated = null;
    	    this._src = null;
       	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
   		 		 			// Simple type - boolean
  			setBooleanProperty(component, "isolated",this._isolated); 
  		   		 		 			// TODO - handle object
  			setStringProperty(component, "src",this._src);
  		         }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.LoadStyle";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return null;
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/GraphicImageTag.java
  
  Index: GraphicImageTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import javax.faces.convert.Converter ;
  import java.lang.Object ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlGraphicImage;
  
  public class GraphicImageTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
   	/*
  	 * width
  	 * width
  	 */
  	 private String  _width = null;
  
    	/*
  	 * title
  	 * title
  	 */
  	 private String  _title = null;
  
     	/*
  	 * dir
  	 * dir
  	 */
  	 private String  _dir = null;
  
     	/*
  	 * styleClass
  	 * Corresponds to the HTML class attribute
  	 */
  	 private String  _styleClass = null;
  
    	/*
  	 * height
  	 * height
  	 */
  	 private String  _height = null;
  
    	/*
  	 * onkeypress
  	 * onkeypress
  	 */
  	 private String  _onkeypress = null;
  
    	/*
  	 * ondblclick
  	 * ondblclick
  	 */
  	 private String  _ondblclick = null;
  
    	/*
  	 * usemap
  	 * usemap
  	 */
  	 private String  _usemap = null;
  
    	/*
  	 * style
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 */
  	 private String  _style = null;
  
    	/*
  	 * url
  	 * url
  	 */
  	 private String  _url = null;
  
    	/*
  	 * longdesc
  	 * longdesc
  	 */
  	 private String  _longdesc = null;
  
    	/*
  	 * onmouseover
  	 * onmouseover
  	 */
  	 private String  _onmouseover = null;
  
     	/*
  	 * onkeyup
  	 * onkeyup
  	 */
  	 private String  _onkeyup = null;
  
     	/*
  	 * lang
  	 * lang
  	 */
  	 private String  _lang = null;
  
    	/*
  	 * onclick
  	 * onclick
  	 */
  	 private String  _onclick = null;
  
    	/*
  	 * ismap
  	 * ismap
  	 */
  	 private String  _ismap = null;
  
    	/*
  	 * alt
  	 * alt
  	 */
  	 private String  _alt = null;
  
    	/*
  	 * onmouseout
  	 * onmouseout
  	 */
  	 private String  _onmouseout = null;
  
    	/*
  	 * onkeydown
  	 * onkeydown
  	 */
  	 private String  _onkeydown = null;
  
    	/*
  	 * onmousedown
  	 * onmousedown
  	 */
  	 private String  _onmousedown = null;
  
    	/*
  	 * fileName
  	 * 
  	 */
  	 private String  _fileName = null;
  
    	/*
  	 * onmouseup
  	 * onmouseup
  	 */
  	 private String  _onmouseup = null;
  
      	/*
  	 * onmousemove
  	 * onmousemove
  	 */
  	 private String  _onmousemove = null;
  
   // Setters
   	/*
  	 * width
  	 * width
  	 */
  	/**
  	 * width
  	 * Setter for width
  	 * @param width - new value
  	 */
  	 public void setWidth( String  __width ){
  		this._width = __width;
       }
  	 
     	/*
  	 * title
  	 * title
  	 */
  	/**
  	 * title
  	 * Setter for title
  	 * @param title - new value
  	 */
  	 public void setTitle( String  __title ){
  		this._title = __title;
       }
  	 
       	/*
  	 * dir
  	 * dir
  	 */
  	/**
  	 * dir
  	 * Setter for dir
  	 * @param dir - new value
  	 */
  	 public void setDir( String  __dir ){
  		this._dir = __dir;
       }
  	 
       	/*
  	 * styleClass
  	 * Corresponds to the HTML class attribute
  	 */
  	/**
  	 * Corresponds to the HTML class attribute
  	 * Setter for styleClass
  	 * @param styleClass - new value
  	 */
  	 public void setStyleClass( String  __styleClass ){
  		this._styleClass = __styleClass;
       }
  	 
     	/*
  	 * height
  	 * height
  	 */
  	/**
  	 * height
  	 * Setter for height
  	 * @param height - new value
  	 */
  	 public void setHeight( String  __height ){
  		this._height = __height;
       }
  	 
     	/*
  	 * onkeypress
  	 * onkeypress
  	 */
  	/**
  	 * onkeypress
  	 * Setter for onkeypress
  	 * @param onkeypress - new value
  	 */
  	 public void setOnkeypress( String  __onkeypress ){
  		this._onkeypress = __onkeypress;
       }
  	 
     	/*
  	 * ondblclick
  	 * ondblclick
  	 */
  	/**
  	 * ondblclick
  	 * Setter for ondblclick
  	 * @param ondblclick - new value
  	 */
  	 public void setOndblclick( String  __ondblclick ){
  		this._ondblclick = __ondblclick;
       }
  	 
     	/*
  	 * usemap
  	 * usemap
  	 */
  	/**
  	 * usemap
  	 * Setter for usemap
  	 * @param usemap - new value
  	 */
  	 public void setUsemap( String  __usemap ){
  		this._usemap = __usemap;
       }
  	 
     	/*
  	 * style
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 */
  	/**
  	 * CSS style(s) is/are to be applied when this component is rendered
  	 * Setter for style
  	 * @param style - new value
  	 */
  	 public void setStyle( String  __style ){
  		this._style = __style;
       }
  	 
     	/*
  	 * url
  	 * url
  	 */
  	/**
  	 * url
  	 * Setter for url
  	 * @param url - new value
  	 */
  	 public void setUrl( String  __url ){
  		this._url = __url;
       }
  	 
     	/*
  	 * longdesc
  	 * longdesc
  	 */
  	/**
  	 * longdesc
  	 * Setter for longdesc
  	 * @param longdesc - new value
  	 */
  	 public void setLongdesc( String  __longdesc ){
  		this._longdesc = __longdesc;
       }
  	 
     	/*
  	 * onmouseover
  	 * onmouseover
  	 */
  	/**
  	 * onmouseover
  	 * Setter for onmouseover
  	 * @param onmouseover - new value
  	 */
  	 public void setOnmouseover( String  __onmouseover ){
  		this._onmouseover = __onmouseover;
       }
  	 
       	/*
  	 * onkeyup
  	 * onkeyup
  	 */
  	/**
  	 * onkeyup
  	 * Setter for onkeyup
  	 * @param onkeyup - new value
  	 */
  	 public void setOnkeyup( String  __onkeyup ){
  		this._onkeyup = __onkeyup;
       }
  	 
       	/*
  	 * lang
  	 * lang
  	 */
  	/**
  	 * lang
  	 * Setter for lang
  	 * @param lang - new value
  	 */
  	 public void setLang( String  __lang ){
  		this._lang = __lang;
       }
  	 
     	/*
  	 * onclick
  	 * onclick
  	 */
  	/**
  	 * onclick
  	 * Setter for onclick
  	 * @param onclick - new value
  	 */
  	 public void setOnclick( String  __onclick ){
  		this._onclick = __onclick;
       }
  	 
     	/*
  	 * ismap
  	 * ismap
  	 */
  	/**
  	 * ismap
  	 * Setter for ismap
  	 * @param ismap - new value
  	 */
  	 public void setIsmap( String  __ismap ){
  		this._ismap = __ismap;
       }
  	 
     	/*
  	 * alt
  	 * alt
  	 */
  	/**
  	 * alt
  	 * Setter for alt
  	 * @param alt - new value
  	 */
  	 public void setAlt( String  __alt ){
  		this._alt = __alt;
       }
  	 
     	/*
  	 * onmouseout
  	 * onmouseout
  	 */
  	/**
  	 * onmouseout
  	 * Setter for onmouseout
  	 * @param onmouseout - new value
  	 */
  	 public void setOnmouseout( String  __onmouseout ){
  		this._onmouseout = __onmouseout;
       }
  	 
     	/*
  	 * onkeydown
  	 * onkeydown
  	 */
  	/**
  	 * onkeydown
  	 * Setter for onkeydown
  	 * @param onkeydown - new value
  	 */
  	 public void setOnkeydown( String  __onkeydown ){
  		this._onkeydown = __onkeydown;
       }
  	 
     	/*
  	 * onmousedown
  	 * onmousedown
  	 */
  	/**
  	 * onmousedown
  	 * Setter for onmousedown
  	 * @param onmousedown - new value
  	 */
  	 public void setOnmousedown( String  __onmousedown ){
  		this._onmousedown = __onmousedown;
       }
  	 
     	/*
  	 * fileName
  	 * 
  	 */
  	/**
  	 * 
  	 * Setter for fileName
  	 * @param fileName - new value
  	 */
  	 public void setFileName( String  __fileName ){
  		this._fileName = __fileName;
       }
  	 
     	/*
  	 * onmouseup
  	 * onmouseup
  	 */
  	/**
  	 * onmouseup
  	 * Setter for onmouseup
  	 * @param onmouseup - new value
  	 */
  	 public void setOnmouseup( String  __onmouseup ){
  		this._onmouseup = __onmouseup;
       }
  	 
         	/*
  	 * onmousemove
  	 * onmousemove
  	 */
  	/**
  	 * onmousemove
  	 * Setter for onmousemove
  	 * @param onmousemove - new value
  	 */
  	 public void setOnmousemove( String  __onmousemove ){
  		this._onmousemove = __onmousemove;
       }
  	 
    // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
   	    this._width = null;
    	    this._title = null;
     	    this._dir = null;
     	    this._styleClass = null;
    	    this._height = null;
    	    this._onkeypress = null;
    	    this._ondblclick = null;
    	    this._usemap = null;
    	    this._style = null;
    	    this._url = null;
    	    this._longdesc = null;
    	    this._onmouseover = null;
     	    this._onkeyup = null;
     	    this._lang = null;
    	    this._onclick = null;
    	    this._ismap = null;
    	    this._alt = null;
    	    this._onmouseout = null;
    	    this._onkeydown = null;
    	    this._onmousedown = null;
    	    this._fileName = null;
    	    this._onmouseup = null;
      	    this._onmousemove = null;
   	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
   		 		 			setStringProperty(component, "width",this._width);
  		   		 		 			setStringProperty(component, "title",this._title);
  		    		 		 			setStringProperty(component, "dir",this._dir);
  		    		 		 			setStringProperty(component, "styleClass",this._styleClass);
  		   		 		 			setStringProperty(component, "height",this._height);
  		   		 		 			setStringProperty(component, "onkeypress",this._onkeypress);
  		   		 		 			setStringProperty(component, "ondblclick",this._ondblclick);
  		   		 		 			setStringProperty(component, "usemap",this._usemap);
  		   		 		 			setStringProperty(component, "style",this._style);
  		   		 		 			setStringProperty(component, "url",this._url);
  		   		 		 			setStringProperty(component, "longdesc",this._longdesc);
  		   		 		 			setStringProperty(component, "onmouseover",this._onmouseover);
  		    		 		 			setStringProperty(component, "onkeyup",this._onkeyup);
  		    		 		 			setStringProperty(component, "lang",this._lang);
  		   		 		 			setStringProperty(component, "onclick",this._onclick);
  		   		 		 			// Simple type - boolean
  			setBooleanProperty(component, "ismap",this._ismap); 
  		   		 		 			setStringProperty(component, "alt",this._alt);
  		   		 		 			setStringProperty(component, "onmouseout",this._onmouseout);
  		   		 		 			setStringProperty(component, "onkeydown",this._onkeydown);
  		   		 		 			setStringProperty(component, "onmousedown",this._onmousedown);
  		   		 		 			setStringProperty(component, "fileName",this._fileName);
  		   		 		 			setStringProperty(component, "onmouseup",this._onmouseup);
  		     		 		 			setStringProperty(component, "onmousemove",this._onmousemove);
  		     }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.graphicImage.GraphicImage";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return "org.jboss.seam.ui.GraphicImageRenderer";
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/TransformImageSizeTag.java
  
  Index: TransformImageSizeTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import java.lang.Double ;
  import java.lang.Integer ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlTransformImageSize;
  
  public class TransformImageSizeTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
   	/*
  	 * factor
  	 * 
  	 */
  	 private String  _factor = null;
  
    	/*
  	 * width
  	 * 
  	 */
  	 private String  _width = null;
  
    	/*
  	 * height
  	 * 
  	 */
  	 private String  _height = null;
  
        	/*
  	 * maintainRatio
  	 * 
  	 */
  	 private String  _maintainRatio = null;
  
   // Setters
   	/*
  	 * factor
  	 * 
  	 */
  	/**
  	 * 
  	 * Setter for factor
  	 * @param factor - new value
  	 */
  	 public void setFactor( String  __factor ){
  		this._factor = __factor;
       }
  	 
     	/*
  	 * width
  	 * 
  	 */
  	/**
  	 * 
  	 * Setter for width
  	 * @param width - new value
  	 */
  	 public void setWidth( String  __width ){
  		this._width = __width;
       }
  	 
     	/*
  	 * height
  	 * 
  	 */
  	/**
  	 * 
  	 * Setter for height
  	 * @param height - new value
  	 */
  	 public void setHeight( String  __height ){
  		this._height = __height;
       }
  	 
             	/*
  	 * maintainRatio
  	 * 
  	 */
  	/**
  	 * 
  	 * Setter for maintainRatio
  	 * @param maintainRatio - new value
  	 */
  	 public void setMaintainRatio( String  __maintainRatio ){
  		this._maintainRatio = __maintainRatio;
       }
  	 
    // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
   	    this._factor = null;
    	    this._width = null;
    	    this._height = null;
        	    this._maintainRatio = null;
   	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
   		 		 			// TODO - setup properties for other cases.
  			// name factor with type java.lang.Double
  		   		 		 			setIntegerProperty(component, "width",this._width); 
  		   		 		 			setIntegerProperty(component, "height",this._height); 
  		       		 		 			// Simple type - boolean
  			setBooleanProperty(component, "maintainRatio",this._maintainRatio); 
  		     }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.graphicImage.TransformImageSize";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return null;
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/EnumItemTag.java
  
  Index: EnumItemTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import java.lang.Object ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlEnumItem;
  
  public class EnumItemTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
   	/*
  	 * enumValue
  	 * the string representation of the enum value.
  	 */
  	 private String  _enumValue = null;
  
     	/*
  	 * itemEscaped
  	 * itemEscaped
  	 */
  	 private String  _itemEscaped = null;
  
    	/*
  	 * itemDescription
  	 * A description used by tools only
  	 */
  	 private String  _itemDescription = null;
  
    	/*
  	 * label
  	 * the label to be used when rendering the SelectItem.
  	 */
  	 private String  _label = null;
  
    	/*
  	 * itemLabel
  	 * itemLabel
  	 */
  	 private String  _itemLabel = null;
  
    	/*
  	 * itemDisabled
  	 * If true, this component isn't saved during state saving
  	 */
  	 private String  _itemDisabled = null;
  
       	/*
  	 * itemValue
  	 * itemValue
  	 */
  	 private String  _itemValue = null;
  
    // Setters
   	/*
  	 * enumValue
  	 * the string representation of the enum value.
  	 */
  	/**
  	 * the string representation of the enum value.
  	 * Setter for enumValue
  	 * @param enumValue - new value
  	 */
  	 public void setEnumValue( String  __enumValue ){
  		this._enumValue = __enumValue;
       }
  	 
    	/**
  	 * the string representation of the enum value.
  	 * Setter for alias of enumValue as itemValue
  	 * @param enumValue - new value
  	 */
  	 public void setItemValue( String  __itemValue ){
  		this.setEnumValue(__itemValue);
       }
      	/*
  	 * itemEscaped
  	 * itemEscaped
  	 */
  	/**
  	 * itemEscaped
  	 * Setter for itemEscaped
  	 * @param itemEscaped - new value
  	 */
  	 public void setItemEscaped( String  __itemEscaped ){
  		this._itemEscaped = __itemEscaped;
       }
  	 
     	/*
  	 * itemDescription
  	 * A description used by tools only
  	 */
  	/**
  	 * A description used by tools only
  	 * Setter for itemDescription
  	 * @param itemDescription - new value
  	 */
  	 public void setItemDescription( String  __itemDescription ){
  		this._itemDescription = __itemDescription;
       }
  	 
     	/*
  	 * label
  	 * the label to be used when rendering the SelectItem.
  	 */
  	/**
  	 * the label to be used when rendering the SelectItem.
  	 * Setter for label
  	 * @param label - new value
  	 */
  	 public void setLabel( String  __label ){
  		this._label = __label;
       }
  	 
    	/**
  	 * the label to be used when rendering the SelectItem.
  	 * Setter for alias of label as itemLabel
  	 * @param label - new value
  	 */
  	 public void setItemLabel( String  __itemLabel ){
  		this.setLabel(__itemLabel);
       }
    	/*
  	 * itemLabel
  	 * itemLabel
  	 */
  	/**
  	 * itemLabel
  	 * Setter for itemLabel
  	 * @param itemLabel - new value
  	 */
  	 public void setItemLabel( String  __itemLabel ){
  		this._itemLabel = __itemLabel;
       }
  	 
     	/*
  	 * itemDisabled
  	 * If true, this component isn't saved during state saving
  	 */
  	/**
  	 * If true, this component isn't saved during state saving
  	 * Setter for itemDisabled
  	 * @param itemDisabled - new value
  	 */
  	 public void setItemDisabled( String  __itemDisabled ){
  		this._itemDisabled = __itemDisabled;
       }
  	 
           	/*
  	 * itemValue
  	 * itemValue
  	 */
  	/**
  	 * itemValue
  	 * Setter for itemValue
  	 * @param itemValue - new value
  	 */
  	 public void setItemValue( String  __itemValue ){
  		this._itemValue = __itemValue;
       }
  	 
      // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
   	    this._enumValue = null;
     	    this._itemEscaped = null;
    	    this._itemDescription = null;
    	    this._label = null;
    	    this._itemLabel = null;
    	    this._itemDisabled = null;
       	    this._itemValue = null;
    	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
   		 		 			setStringProperty(component, "enumValue",this._enumValue);
  		    		 		 			// Simple type - boolean
  			setBooleanProperty(component, "itemEscaped",this._itemEscaped); 
  		   		 		 			setStringProperty(component, "itemDescription",this._itemDescription);
  		   		 		 			setStringProperty(component, "label",this._label);
  		   		 		 			setStringProperty(component, "itemLabel",this._itemLabel);
  		   		 		 			// Simple type - boolean
  			setBooleanProperty(component, "itemDisabled",this._itemDisabled); 
  		      		 		 			// TODO - handle object
  			setStringProperty(component, "itemValue",this._itemValue);
  		      }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.EnumItem";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return null;
  			}
  
  }
  
  
  
  1.1      date: 2007/06/20 08:40:17;  author: pmuir;  state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/FragmentTag.java
  
  Index: FragmentTag.java
  ===================================================================
  /**
   * GENERATED FILE - DO NOT EDIT
   *
   */
  package org.jboss.seam.ui.taglib;
  
  import org.jboss.seam.ui.util.cdk.UIComponentTagBase ;
  import java.lang.String ;
  import javax.faces.component.UIComponent;
  import org.jboss.seam.ui.component.html.HtmlFragment;
  
  public class FragmentTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
  
  // Fields
      // Setters
          // Release
  
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
       */
      public void release()
      {
          // TODO Auto-generated method stub
          super.release();
      	}
  	
      /* (non-Javadoc)
       * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#setProperties(javax.faces.component.UIComponent)
       */
      protected void setProperties(UIComponent component)
      {
          // TODO Auto-generated method stub
          super.setProperties(component);
  	
         }
  	
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getComponentType()
  	 */
  	public String getComponentType() {
  		// TODO Auto-generated method stub
  		return "org.jboss.seam.ui.Fragment";
  	}
  
  	/* (non-Javadoc)
  	 * @see javax.faces.webapp.UIComponentTag#getRendererType()
  	 */
  	public String getRendererType() {
  				return "org.jboss.seam.ui.FragmentRenderer";
  			}
  
  }
  
  
  



More information about the jboss-cvs-commits mailing list