[jboss-cvs] jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib ...
Gavin King
gavin.king at jboss.com
Thu Oct 4 19:15:13 EDT 2007
User: gavin
Date: 07/10/04 19:15:13
Added: ui/target/generated-component/java/org/jboss/seam/ui/taglib
RemoteTag.java MessageTag.java SelectDateTag.java
SpanTag.java ButtonTag.java SelectItemsTag.java
FileUploadTag.java ConvertEnumTag.java
FormattedTextValidatorTag.java
TransformImageSizeTag.java EnumItemTag.java
FragmentTag.java ConvertDateTimeTag.java
FormattedTextTag.java TransformImageTypeTag.java
ConversationPropagationTag.java CacheTag.java
TaskIdTag.java LabelTag.java DecorateTag.java
DivTag.java TransformImageBlurTag.java
ConversationIdTag.java ConvertEntityTag.java
SelectionTag.java ModelValidatorTag.java
LinkTag.java ValidateAllTag.java
GraphicImageTag.java
Log:
fix warnings
Revision Changes Path
1.1 date: 2007/10/04 23:15:12; author: gavin; state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/RemoteTag.java
Index: RemoteTag.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.HtmlRemote;
public class RemoteTag extends org.jboss.seam.ui.util.cdk.UIComponentTagBase {
// Fields
/*
* styleClass
* Corresponds to the HTML class attribute
*/
private String _styleClass = null;
/*
* include
*
*/
private String _include = 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;
}
/*
* include
*
*/
/**
*
* Setter for include
* @param include - new value
*/
public void setInclude( String __include ){
this._include = __include;
}
/*
* 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._include = 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, "include",this._include);
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.Remote";
}
/* (non-Javadoc)
* @see javax.faces.webapp.UIComponentTag#getRendererType()
*/
public String getRendererType() {
return "org.jboss.seam.ui.RemoteRenderer";
}
}
1.3 +0 -0 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/MessageTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: MessageTag.java
===================================================================
RCS file: MessageTag.java
diff -N MessageTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ MessageTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,421 @@
+/**
+ * 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.3 +22 -0 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/SelectDateTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: SelectDateTag.java
===================================================================
RCS file: SelectDateTag.java
diff -N SelectDateTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ SelectDateTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,202 @@
+/**
+ * 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.Integer ;
+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;
+
+ /*
+ * firstDayOfWeek
+ * Set to override the default first day of week
+ */
+ private String _firstDayOfWeek = 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;
+ }
+
+ /*
+ * firstDayOfWeek
+ * Set to override the default first day of week
+ */
+ /**
+ * Set to override the default first day of week
+ * Setter for firstDayOfWeek
+ * @param firstDayOfWeek - new value
+ */
+ public void setFirstDayOfWeek( String __firstDayOfWeek ){
+ this._firstDayOfWeek = __firstDayOfWeek;
+ }
+
+ /*
+ * 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._firstDayOfWeek = 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);
+ setIntegerProperty(component, "firstDayOfWeek",this._firstDayOfWeek);
+ 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.3 +0 -0 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/SpanTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: SpanTag.java
===================================================================
RCS file: SpanTag.java
diff -N SpanTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ SpanTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,94 @@
+/**
+ * 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.3 +50 -6 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/ButtonTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ButtonTag.java
===================================================================
RCS file: ButtonTag.java
diff -N ButtonTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ ButtonTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,759 @@
+/**
+ * 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.el.MethodExpression ;
+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
+ * ${prop.xmlEncodedDescription}
+ */
+ 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;
+
+ /*
+ * actionExpression
+ * actionExpression
+ */
+ private String _actionExpression = 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;
+
+ /*
+ * taskInstance
+ * Specify the task to operate on (e.g. for @StartTask)
+ */
+ private String _taskInstance = 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
+ * ${prop.xmlEncodedDescription}
+ */
+ /**
+ * $prop.description
+ * 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;
+ }
+
+ /*
+ * actionExpression
+ * actionExpression
+ */
+ /**
+ * actionExpression
+ * Setter for actionExpression
+ * @param actionExpression - new value
+ */
+ public void setActionExpression( String __actionExpression ){
+ this._actionExpression = __actionExpression;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * taskInstance
+ * Specify the task to operate on (e.g. for @StartTask)
+ */
+ /**
+ * Specify the task to operate on (e.g. for @StartTask)
+ * Setter for taskInstance
+ * @param taskInstance - new value
+ */
+ public void setTaskInstance( String __taskInstance ){
+ this._taskInstance = __taskInstance;
+ }
+
+ /*
+ * 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._actionExpression = null;
+ this._disabled = null;
+ this._onclick = null;
+ this._alt = null;
+ this._onmouseout = null;
+ this._onkeydown = null;
+ this._onmousedown = null;
+ this._taskInstance = 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);
+ // TODO - setup properties for other cases.
+ // name actionExpression with type javax.el.MethodExpression
+ // 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);
+ setValueBinding(component, "taskInstance",this._taskInstance);
+ // 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.3 +1 -2 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/SelectItemsTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: SelectItemsTag.java
===================================================================
RCS file: SelectItemsTag.java
diff -N SelectItemsTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ SelectItemsTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,159 @@
+/**
+ * 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);
+ 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.3 +607 -128 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/FileUploadTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: FileUploadTag.java
===================================================================
RCS file: FileUploadTag.java
diff -N FileUploadTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ FileUploadTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,962 @@
+/**
+ * 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
+ /*
+ * fileSize
+ * this value binding receives the file size (optional).
+ */
+ private String _fileSize = null;
+
+ /*
+ * onchange
+ * HTML: script expression; the element value was changed
+ */
+ private String _onchange = 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;
+
+ /*
+ * 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;
+
+ /*
+ * 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;
+
+ /*
+ * onmouseover
+ * HTML: a script expression; a pointer is moved onto
+ */
+ private String _onmouseover = null;
+
+ /*
+ * onkeyup
+ * HTML: a script expression; a key is released
+ */
+ private String _onkeyup = null;
+
+ /*
+ * localFileName
+ * localFileName
+ */
+ private String _localFileName = 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;
+
+ /*
+ * maxlength
+ * When the type attribute has the value "text" or "password", this attribute specifies the maximum number of characters the user may enter. This number may exceed the specified size, in which case the user agent should offer a scrolling mechanism. The default value for this attribute is an unlimited number
+ */
+ private String _maxlength = null;
+
+ /*
+ * disabled
+ * When set for a form control, this boolean attribute disables the control for user input
+ */
+ private String _disabled = null;
+
+ /*
+ * valid
+ * valid
+ */
+ private String _valid = 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;
+
+ /*
+ * localInputStream
+ * localInputStream
+ */
+ private String _localInputStream = null;
+
+ /*
+ * validator
+ * MethodBinding pointing at a method that is called during
+ Process Validations phase of the request processing lifecycle,
+ to validate the current value of this component
+ */
+ private String _validator = null;
+
+ /*
+ * fileName
+ * this value binding receives the filename (optional).
+ */
+ private String _fileName = null;
+
+ /*
+ * onselect
+ * HTML: script expression; The onselect event occurs when a user selects some text in a text field. This attribute may be used with the INPUT and TEXTAREA elements
+ */
+ private String _onselect = 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;
+
+ /*
+ * localValueSet
+ * localValueSet
+ */
+ private String _localValueSet = null;
+
+ /*
+ * styleClass
+ * Corresponds to the HTML class attribute
+ */
+ private String _styleClass = null;
+
+ /*
+ * localContentType
+ * localContentType
+ */
+ private String _localContentType = 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
+ * 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;
+
+ /*
+ * align
+ * left|center|right|justify [CI]
+ Deprecated. This attribute specifies the horizontal alignment of its element with respect to the surrounding context. Possible values:
+
+ * left: text lines are rendered flush left.
+ * center: text lines are centered.
+ * right: text lines are rendered flush right.
+ * justify: text lines are justified to both margins.
+
+ The default depends on the base text direction. For left to right text, the default is align=left, while for right to left text, the default is align=right
+ */
+ private String _align = null;
+
+ /*
+ * onblur
+ * HTML: script expression; the element lost the focus
+ */
+ private String _onblur = null;
+
+ /*
+ * required
+ * If "true", this component is checked for non-empty input
+ */
+ private String _required = null;
+
+ /*
+ * validatorMessage
+ * validatorMessage
+ */
+ private String _validatorMessage = null;
+
+ /*
+ * onclick
+ * HTML: a script expression; a pointer button is clicked
+ */
+ private String _onclick = null;
+
+ /*
+ * valueChangeListener
+ * Listener for value changes
+ */
+ private String _valueChangeListener = null;
+
+ /*
+ * onkeydown
+ * HTML: a script expression; a key is pressed down
+ */
+ private String _onkeydown = null;
+
+ /*
+ * contentType
+ * the property to receive the contentType
+ */
+ private String _contentType = null;
+
+ /*
+ * onmousedown
+ * HTML: script expression; a pointer button is pressed down
+ */
+ private String _onmousedown = null;
+
+ /*
+ * converterMessage
+ * converterMessage
+ */
+ private String _converterMessage = null;
+
+ /*
+ * immediate
+ * A flag indicating that this component value must be converted
+ and validated immediately (that is, during Apply Request Values
+ phase), rather than waiting until a Process Validations phase
+ */
+ private String _immediate = null;
+
+ /*
+ * data
+ * this value binding receives the file's content type (optional).
+ */
+ private String _data = null;
+
+ /*
+ * onfocus
+ * HTML: script expression; the element got the focus
+ */
+ private String _onfocus = null;
+
+ // Setters
+ /*
+ * 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;
+ }
+
+ /*
+ * onchange
+ * HTML: script expression; the element value was changed
+ */
+ /**
+ * HTML: script expression; the element value was changed
+ * Setter for onchange
+ * @param onchange - new value
+ */
+ public void setOnchange( String __onchange ){
+ this._onchange = __onchange;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * localFileName
+ * localFileName
+ */
+ /**
+ * localFileName
+ * Setter for localFileName
+ * @param localFileName - new value
+ */
+ public void setLocalFileName( String __localFileName ){
+ this._localFileName = __localFileName;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * maxlength
+ * When the type attribute has the value "text" or "password", this attribute specifies the maximum number of characters the user may enter. This number may exceed the specified size, in which case the user agent should offer a scrolling mechanism. The default value for this attribute is an unlimited number
+ */
+ /**
+ * When the type attribute has the value "text" or "password", this attribute specifies the maximum number of characters the user may enter. This number may exceed the specified size, in which case the user agent should offer a scrolling mechanism. The default value for this attribute is an unlimited number
+ * Setter for maxlength
+ * @param maxlength - new value
+ */
+ public void setMaxlength( String __maxlength ){
+ this._maxlength = __maxlength;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * valid
+ * valid
+ */
+ /**
+ * valid
+ * Setter for valid
+ * @param valid - new value
+ */
+ public void setValid( String __valid ){
+ this._valid = __valid;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * localInputStream
+ * localInputStream
+ */
+ /**
+ * localInputStream
+ * Setter for localInputStream
+ * @param localInputStream - new value
+ */
+ public void setLocalInputStream( String __localInputStream ){
+ this._localInputStream = __localInputStream;
+ }
+
+ /*
+ * validator
+ * MethodBinding pointing at a method that is called during
+ Process Validations phase of the request processing lifecycle,
+ to validate the current value of this component
+ */
+ /**
+ * MethodBinding pointing at a method that is called during
+ Process Validations phase of the request processing lifecycle,
+ to validate the current value of this component
+ * 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;
+ }
+
+ /*
+ * onselect
+ * HTML: script expression; The onselect event occurs when a user selects some text in a text field. This attribute may be used with the INPUT and TEXTAREA elements
+ */
+ /**
+ * HTML: script expression; The onselect event occurs when a user selects some text in a text field. This attribute may be used with the INPUT and TEXTAREA elements
+ * Setter for onselect
+ * @param onselect - new value
+ */
+ public void setOnselect( String __onselect ){
+ this._onselect = __onselect;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * localValueSet
+ * localValueSet
+ */
+ /**
+ * localValueSet
+ * Setter for localValueSet
+ * @param localValueSet - new value
+ */
+ public void setLocalValueSet( String __localValueSet ){
+ this._localValueSet = __localValueSet;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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
+ * 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;
+ }
+
+ /*
+ * align
+ * left|center|right|justify [CI]
+ Deprecated. This attribute specifies the horizontal alignment of its element with respect to the surrounding context. Possible values:
+
+ * left: text lines are rendered flush left.
+ * center: text lines are centered.
+ * right: text lines are rendered flush right.
+ * justify: text lines are justified to both margins.
+
+ The default depends on the base text direction. For left to right text, the default is align=left, while for right to left text, the default is align=right
+ */
+ /**
+ * left|center|right|justify [CI]
+ Deprecated. This attribute specifies the horizontal alignment of its element with respect to the surrounding context. Possible values:
+
+ * left: text lines are rendered flush left.
+ * center: text lines are centered.
+ * right: text lines are rendered flush right.
+ * justify: text lines are justified to both margins.
+
+ The default depends on the base text direction. For left to right text, the default is align=left, while for right to left text, the default is align=right
+ * Setter for align
+ * @param align - new value
+ */
+ public void setAlign( String __align ){
+ this._align = __align;
+ }
+
+ /*
+ * onblur
+ * HTML: script expression; the element lost the focus
+ */
+ /**
+ * HTML: script expression; the element lost the focus
+ * Setter for onblur
+ * @param onblur - new value
+ */
+ public void setOnblur( String __onblur ){
+ this._onblur = __onblur;
+ }
+
+ /*
+ * required
+ * If "true", this component is checked for non-empty input
+ */
+ /**
+ * If "true", this component is checked for non-empty input
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * valueChangeListener
+ * Listener for value changes
+ */
+ /**
+ * Listener for value changes
+ * Setter for valueChangeListener
+ * @param valueChangeListener - new value
+ */
+ public void setValueChangeListener( String __valueChangeListener ){
+ this._valueChangeListener = __valueChangeListener;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * converterMessage
+ * converterMessage
+ */
+ /**
+ * converterMessage
+ * Setter for converterMessage
+ * @param converterMessage - new value
+ */
+ public void setConverterMessage( String __converterMessage ){
+ this._converterMessage = __converterMessage;
+ }
+
+ /*
+ * immediate
+ * A flag indicating that this component value must be converted
+ and validated immediately (that is, during Apply Request Values
+ phase), rather than waiting until a Process Validations phase
+ */
+ /**
+ * A flag indicating that this component value must be converted
+ and validated immediately (that is, during Apply Request Values
+ phase), rather than waiting until a Process Validations phase
+ * 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;
+ }
+
+ /*
+ * onfocus
+ * HTML: script expression; the element got the focus
+ */
+ /**
+ * HTML: script expression; the element got the focus
+ * Setter for onfocus
+ * @param onfocus - new value
+ */
+ public void setOnfocus( String __onfocus ){
+ this._onfocus = __onfocus;
+ }
+
+ // Release
+
+ /* (non-Javadoc)
+ * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
+ */
+ public void release()
+ {
+ // TODO Auto-generated method stub
+ super.release();
+ this._fileSize = null;
+ this._onchange = null;
+ this._requiredMessage = null;
+ this._localFileSize = null;
+ this._style = null;
+ this._size = null;
+ this._accept = null;
+ this._onmouseover = null;
+ this._onkeyup = null;
+ this._localFileName = null;
+ this._tabindex = null;
+ this._maxlength = null;
+ this._disabled = null;
+ this._valid = null;
+ this._alt = null;
+ this._onmouseout = null;
+ this._localInputStream = null;
+ this._validator = null;
+ this._fileName = null;
+ this._onselect = null;
+ this._onmouseup = null;
+ this._onmousemove = null;
+ this._localValueSet = null;
+ this._styleClass = null;
+ this._localContentType = null;
+ this._accesskey = null;
+ this._onkeypress = null;
+ this._ondblclick = null;
+ this._align = null;
+ this._onblur = null;
+ this._required = null;
+ this._validatorMessage = null;
+ this._onclick = null;
+ this._valueChangeListener = null;
+ this._onkeydown = null;
+ this._contentType = null;
+ this._onmousedown = null;
+ this._converterMessage = null;
+ this._immediate = null;
+ this._data = null;
+ this._onfocus = 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);
+
+ setValueBinding(component, "fileSize",this._fileSize);
+ setStringProperty(component, "onchange",this._onchange);
+ setStringProperty(component, "requiredMessage",this._requiredMessage);
+ setIntegerProperty(component, "localFileSize",this._localFileSize);
+ setStringProperty(component, "style",this._style);
+ // Simple type - int
+ setIntegerProperty(component, "size",this._size);
+ setStringProperty(component, "accept",this._accept);
+ setStringProperty(component, "onmouseover",this._onmouseover);
+ setStringProperty(component, "onkeyup",this._onkeyup);
+ setStringProperty(component, "localFileName",this._localFileName);
+ setStringProperty(component, "tabindex",this._tabindex);
+ // Simple type - int
+ setIntegerProperty(component, "maxlength",this._maxlength);
+ // Simple type - boolean
+ setBooleanProperty(component, "disabled",this._disabled);
+ // Simple type - boolean
+ setBooleanProperty(component, "valid",this._valid);
+ setStringProperty(component, "alt",this._alt);
+ setStringProperty(component, "onmouseout",this._onmouseout);
+ // TODO - setup properties for other cases.
+ // name localInputStream with type java.io.InputStream
+ setValidatorProperty(component, this._validator);
+ setValueBinding(component, "fileName",this._fileName);
+ setStringProperty(component, "onselect",this._onselect);
+ setStringProperty(component, "onmouseup",this._onmouseup);
+ setStringProperty(component, "onmousemove",this._onmousemove);
+ // Simple type - boolean
+ setBooleanProperty(component, "localValueSet",this._localValueSet);
+ setStringProperty(component, "styleClass",this._styleClass);
+ setStringProperty(component, "localContentType",this._localContentType);
+ setStringProperty(component, "accesskey",this._accesskey);
+ setStringProperty(component, "onkeypress",this._onkeypress);
+ setStringProperty(component, "ondblclick",this._ondblclick);
+ setStringProperty(component, "align",this._align);
+ setStringProperty(component, "onblur",this._onblur);
+ // Simple type - boolean
+ setBooleanProperty(component, "required",this._required);
+ setStringProperty(component, "validatorMessage",this._validatorMessage);
+ setStringProperty(component, "onclick",this._onclick);
+ setValueChangedListenerProperty(component, this._valueChangeListener);
+ setStringProperty(component, "onkeydown",this._onkeydown);
+ setValueBinding(component, "contentType",this._contentType);
+ setStringProperty(component, "onmousedown",this._onmousedown);
+ setStringProperty(component, "converterMessage",this._converterMessage);
+ // Simple type - boolean
+ setBooleanProperty(component, "immediate",this._immediate);
+ setValueBinding(component, "data",this._data);
+ setStringProperty(component, "onfocus",this._onfocus);
+ }
+
+ /* (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.3 +36 -36 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/ConvertEnumTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ConvertEnumTag.java
===================================================================
RCS file: ConvertEnumTag.java
diff -N ConvertEnumTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ ConvertEnumTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,36 @@
+/**
+ * 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 = (EnumConverter) FacesContext.getCurrentInstance().getApplication().createConverter("org.jboss.seam.ui.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/10/04 23:15:12; author: gavin; state: Exp;jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/FormattedTextValidatorTag.java
Index: FormattedTextValidatorTag.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.FormattedTextValidator;
public class FormattedTextValidatorTag extends javax.faces.webapp.ValidatorELTag {
// Fields
// Setters
protected Validator createValidator() throws JspException
{
FormattedTextValidator validator = (FormattedTextValidator) FacesContext.getCurrentInstance().getApplication().createValidator("org.jboss.seam.ui.FormattedTextValidator");
_setProperties(validator);
return validator;
}
// Support method to wire in properties
private void _setProperties(FormattedTextValidator validator) throws JspException
{
FacesContext facesContext = FacesContext.getCurrentInstance();
}
}
1.3 +0 -0 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/TransformImageSizeTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: TransformImageSizeTag.java
===================================================================
RCS file: TransformImageSizeTag.java
diff -N TransformImageSizeTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ TransformImageSizeTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,140 @@
+/**
+ * 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.3 +11 -27 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/EnumItemTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: EnumItemTag.java
===================================================================
RCS file: EnumItemTag.java
diff -N EnumItemTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ EnumItemTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,203 @@
+/**
+ * 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
+ * A text shown by the item
+ */
+ private String _itemLabel = null;
+
+ /*
+ * itemDisabled
+ * If "true", this component isn't saved during state saving
+ */
+ private String _itemDisabled = null;
+
+ /*
+ * itemValue
+ * Item value, which is passed to the server as a request parameter
+ */
+ 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * itemLabel
+ * A text shown by the item
+ */
+ /**
+ * A text shown by the item
+ * 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
+ * Item value, which is passed to the server as a request parameter
+ */
+ /**
+ * Item value, which is passed to the server as a request parameter
+ * 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.3 +0 -0 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/FragmentTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: FragmentTag.java
===================================================================
RCS file: FragmentTag.java
diff -N FragmentTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ FragmentTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,52 @@
+/**
+ * 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";
+ }
+
+}
1.3 +199 -199 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/ConvertDateTimeTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ConvertDateTimeTag.java
===================================================================
RCS file: ConvertDateTimeTag.java
diff -N ConvertDateTimeTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ ConvertDateTimeTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,199 @@
+/**
+ * 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 = (DateTimeConverter) FacesContext.getCurrentInstance().getApplication().createConverter("org.jboss.seam.ui.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.3 +0 -0 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/FormattedTextTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: FormattedTextTag.java
===================================================================
RCS file: FormattedTextTag.java
diff -N FormattedTextTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ FormattedTextTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,54 @@
+/**
+ * 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.3 +0 -0 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/TransformImageTypeTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: TransformImageTypeTag.java
===================================================================
RCS file: TransformImageTypeTag.java
diff -N TransformImageTypeTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ TransformImageTypeTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,73 @@
+/**
+ * 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.3 +0 -0 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/ConversationPropagationTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ConversationPropagationTag.java
===================================================================
RCS file: ConversationPropagationTag.java
diff -N ConversationPropagationTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ ConversationPropagationTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,116 @@
+/**
+ * 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.3 +1 -2 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/CacheTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: CacheTag.java
===================================================================
RCS file: CacheTag.java
diff -N CacheTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ CacheTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,115 @@
+/**
+ * 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);
+ setValueBinding(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.3 +0 -0 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/TaskIdTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: TaskIdTag.java
===================================================================
RCS file: TaskIdTag.java
diff -N TaskIdTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ TaskIdTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,74 @@
+/**
+ * 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.3 +0 -0 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/LabelTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: LabelTag.java
===================================================================
RCS file: LabelTag.java
diff -N LabelTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ LabelTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,496 @@
+/**
+ * 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.3 +25 -4 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/DecorateTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: DecorateTag.java
===================================================================
RCS file: DecorateTag.java
diff -N DecorateTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ DecorateTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,94 @@
+/**
+ * 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
+ /*
+ * template
+ *
+ */
+ private String _template = null;
+
+ /*
+ * for
+ *
+ */
+ private String _for = null;
+
+ // Setters
+ /*
+ * template
+ *
+ */
+ /**
+ *
+ * Setter for template
+ * @param template - new value
+ */
+ public void setTemplate( String __template ){
+ this._template = __template;
+ }
+
+ /*
+ * 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._template = 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, "template",this._template);
+ 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.3 +0 -0 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/DivTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: DivTag.java
===================================================================
RCS file: DivTag.java
diff -N DivTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ DivTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,94 @@
+/**
+ * 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.3 +0 -0 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/TransformImageBlurTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: TransformImageBlurTag.java
===================================================================
RCS file: TransformImageBlurTag.java
diff -N TransformImageBlurTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ TransformImageBlurTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,73 @@
+/**
+ * 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.3 +0 -0 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/ConversationIdTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ConversationIdTag.java
===================================================================
RCS file: ConversationIdTag.java
diff -N ConversationIdTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ ConversationIdTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,95 @@
+/**
+ * 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.3 +36 -36 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/ConvertEntityTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ConvertEntityTag.java
===================================================================
RCS file: ConvertEntityTag.java
diff -N ConvertEntityTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ ConvertEntityTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,36 @@
+/**
+ * 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 = (EntityConverter) FacesContext.getCurrentInstance().getApplication().createConverter("org.jboss.seam.ui.EntityConverter");
+ _setProperties(converter);
+ return converter;
+ }
+
+ // Support method to wire in attributes
+ private void _setProperties(EntityConverter converter) throws JspException
+ {
+ FacesContext facesContext = FacesContext.getCurrentInstance();
+ }
+
+}
1.3 +0 -0 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/SelectionTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: SelectionTag.java
===================================================================
RCS file: SelectionTag.java
diff -N SelectionTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ SelectionTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,116 @@
+/**
+ * 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.3 +2 -2 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/ModelValidatorTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ModelValidatorTag.java
===================================================================
RCS file: ModelValidatorTag.java
diff -N ModelValidatorTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ ModelValidatorTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,34 @@
+/**
+ * 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 = (ModelValidator) FacesContext.getCurrentInstance().getApplication().createValidator("org.jboss.seam.ui.ModelValidator");
+ _setProperties(validator);
+ return validator;
+ }
+
+ // Support method to wire in properties
+ private void _setProperties(ModelValidator validator) throws JspException
+ {
+ FacesContext facesContext = FacesContext.getCurrentInstance();
+ }
+}
1.3 +422 -378 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/LinkTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: LinkTag.java
===================================================================
RCS file: LinkTag.java
diff -N LinkTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ LinkTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,926 @@
+/**
+ * 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.el.MethodExpression ;
+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
+ /*
+ * 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;
+
+ /*
+ * pageflow
+ * a pageflow definition to begin. (This is only useful when propagation="begin" or propagation="join".)
+ */
+ private String _pageflow = null;
+
+ /*
+ * style
+ * CSS style(s) is/are to be applied when this component is rendered
+ */
+ private String _style = null;
+
+ /*
+ * propagation
+ * determines the conversation propagation style: begin, join, nest, none or end.
+ */
+ private String _propagation = null;
+
+ /*
+ * onmouseover
+ * HTML: a script expression; a pointer is moved onto
+ */
+ private String _onmouseover = 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;
+
+ /*
+ * lang
+ * Code describing the language used in the generated markup for this component
+ */
+ private String _lang = null;
+
+ /*
+ * actionExpression
+ * actionExpression
+ */
+ private String _actionExpression = null;
+
+ /*
+ * disabled
+ * disabled
+ */
+ private String _disabled = null;
+
+ /*
+ * onmouseout
+ * HTML: a script expression; a pointer is moved away
+ */
+ private String _onmouseout = null;
+
+ /*
+ * taskInstance
+ * Specify the task to operate on (e.g. for @StartTask)
+ */
+ private String _taskInstance = 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;
+
+ /*
+ * 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;
+
+ /*
+ * 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;
+
+ /*
+ * 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;
+
+ /*
+ * outcome
+ * ${prop.xmlEncodedDescription}
+ */
+ private String _outcome = 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;
+
+ /*
+ * 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;
+
+ /*
+ * 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;
+
+ /*
+ * onclick
+ * HTML: a script expression; a pointer button is clicked
+ */
+ private String _onclick = 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;
+
+ /*
+ * onfocus
+ * JavaScript code. The onfocus event occurs when an element gets focus
+ */
+ private String _onfocus = null;
+
+ // Setters
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * actionExpression
+ * actionExpression
+ */
+ /**
+ * actionExpression
+ * Setter for actionExpression
+ * @param actionExpression - new value
+ */
+ public void setActionExpression( String __actionExpression ){
+ this._actionExpression = __actionExpression;
+ }
+
+ /*
+ * disabled
+ * disabled
+ */
+ /**
+ * disabled
+ * Setter for disabled
+ * @param disabled - new value
+ */
+ public void setDisabled( String __disabled ){
+ this._disabled = __disabled;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * taskInstance
+ * Specify the task to operate on (e.g. for @StartTask)
+ */
+ /**
+ * Specify the task to operate on (e.g. for @StartTask)
+ * Setter for taskInstance
+ * @param taskInstance - new value
+ */
+ public void setTaskInstance( String __taskInstance ){
+ this._taskInstance = __taskInstance;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * outcome
+ * ${prop.xmlEncodedDescription}
+ */
+ /**
+ * $prop.description
+ * Setter for outcome
+ * @param outcome - new value
+ */
+ public void setOutcome( String __outcome ){
+ this._outcome = __outcome;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ /*
+ * 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;
+ }
+
+ // Release
+
+ /* (non-Javadoc)
+ * @see org.ajax4jsf.components.taglib.html.HtmlCommandButtonTagBase#release()
+ */
+ public void release()
+ {
+ // TODO Auto-generated method stub
+ super.release();
+ this._dir = null;
+ this._rev = null;
+ this._pageflow = null;
+ this._style = null;
+ this._propagation = null;
+ this._onmouseover = null;
+ this._onkeyup = null;
+ this._tabindex = null;
+ this._lang = null;
+ this._actionExpression = null;
+ this._disabled = null;
+ this._onmouseout = null;
+ this._taskInstance = null;
+ this._rel = null;
+ this._onmouseup = null;
+ this._onmousemove = null;
+ this._coords = null;
+ this._actionListener = null;
+ this._title = null;
+ this._shape = null;
+ this._target = null;
+ this._charset = null;
+ this._styleClass = null;
+ this._accesskey = null;
+ this._outcome = null;
+ this._fragment = null;
+ this._onkeypress = null;
+ this._ondblclick = null;
+ this._onblur = null;
+ this._view = null;
+ this._action = null;
+ this._hreflang = null;
+ this._type = null;
+ this._onclick = null;
+ this._onkeydown = null;
+ this._onmousedown = null;
+ this._immediate = null;
+ this._onfocus = 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, "dir",this._dir);
+ setStringProperty(component, "rev",this._rev);
+ setStringProperty(component, "pageflow",this._pageflow);
+ setStringProperty(component, "style",this._style);
+ setStringProperty(component, "propagation",this._propagation);
+ setStringProperty(component, "onmouseover",this._onmouseover);
+ setStringProperty(component, "onkeyup",this._onkeyup);
+ setStringProperty(component, "tabindex",this._tabindex);
+ setStringProperty(component, "lang",this._lang);
+ // TODO - setup properties for other cases.
+ // name actionExpression with type javax.el.MethodExpression
+ // Simple type - boolean
+ setBooleanProperty(component, "disabled",this._disabled);
+ setStringProperty(component, "onmouseout",this._onmouseout);
+ setValueBinding(component, "taskInstance",this._taskInstance);
+ setStringProperty(component, "rel",this._rel);
+ setStringProperty(component, "onmouseup",this._onmouseup);
+ setStringProperty(component, "onmousemove",this._onmousemove);
+ setStringProperty(component, "coords",this._coords);
+ 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, "styleClass",this._styleClass);
+ setStringProperty(component, "accesskey",this._accesskey);
+ setStringProperty(component, "outcome",this._outcome);
+ setStringProperty(component, "fragment",this._fragment);
+ setStringProperty(component, "onkeypress",this._onkeypress);
+ setStringProperty(component, "ondblclick",this._ondblclick);
+ setStringProperty(component, "onblur",this._onblur);
+ setStringProperty(component, "view",this._view);
+ setActionProperty(component, this._action);
+ setStringProperty(component, "hreflang",this._hreflang);
+ setStringProperty(component, "type",this._type);
+ setStringProperty(component, "onclick",this._onclick);
+ setStringProperty(component, "onkeydown",this._onkeydown);
+ setStringProperty(component, "onmousedown",this._onmousedown);
+ // Simple type - boolean
+ setBooleanProperty(component, "immediate",this._immediate);
+ setStringProperty(component, "onfocus",this._onfocus);
+ }
+
+ /* (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.3 +0 -0 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/ValidateAllTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ValidateAllTag.java
===================================================================
RCS file: ValidateAllTag.java
diff -N ValidateAllTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ ValidateAllTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,74 @@
+/**
+ * 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.3 +0 -0 jboss-seam/ui/target/generated-component/java/org/jboss/seam/ui/taglib/GraphicImageTag.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: GraphicImageTag.java
===================================================================
RCS file: GraphicImageTag.java
diff -N GraphicImageTag.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ GraphicImageTag.java 4 Oct 2007 23:15:12 -0000 1.3
@@ -0,0 +1,538 @@
+/**
+ * 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";
+ }
+
+}
More information about the jboss-cvs-commits
mailing list