Can we please send out webrevs prior to code changes of this size, and
can we make sure all CVS commits reference a Bug id/issue?
Thanks,
D
gjmurphy_at_dev.java.net wrote:
> User: gjmurphy
> Date: 2007/02/26 14:46:32
>
> Modified:
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/Calendar.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/TableRowGroup.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/TreeNode.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/PasswordField.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/ImageComponent.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/ImageHyperlink.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/Alert.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/Field.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/Hyperlink.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/StaticText.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/TableColumn.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/Tab.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/PageAlert.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/Scheduler.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/TabSet.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/EditableList.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/Checkbox.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/Form.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/HelpInline.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/Selector.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/Body.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/Message.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/Button.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/OrderableList.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/HiddenField.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/Alarm.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/RbCbSelector.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/CommonTask.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/Tree.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/Link.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/Upload.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/Property.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/Label.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/HelpWindow.java
> woodstock/webui/src/runtime/com/sun/webui/jsf/component/RadioButton.java
>
> Log:
> Removing annotation element values for "editorClassName" in cases where property editor class
> was a local class that extends a class defined in com.sun.rave.propertyeditors. As of NetBeans 6, these
> base classes will no longer be available.
> I have rewritten some of the property editors so that they rely only on classes in java.beans and com.sun.rave.designtime. A number of other editors extended com.sun.rave.propertyeditors.DomainPropertyEditor. These I was able to remove by configuring the property domain directly in the property descriptor. Unfornately, there is no way to do this in the annotations.
> The current set of changes maintain backwards compatibility: the Woodstock library will still work with Visual Web Pack in NB 5.0.
>
> File Changes:
>
> Directory: /woodstock/webui/src/runtime/com/sun/webui/jsf/component/
> ====================================================================
>
> File [changed]: Calendar.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/Calendar.java?r1=1.2&r2=1.3
> Delta lines: +3 -2
> -------------------
> --- Calendar.java 22 Feb 2007 18:15:08 -0000 1.2
> +++ Calendar.java 26 Feb 2007 22:46:27 -0000 1.3
> @@ -306,7 +306,8 @@
> }
>
> // Hide text
> - @Property(name="text", isHidden=true, isAttribute=false)
> + @Property(name="text", isHidden=true, isAttribute=false,
> + editorClassName="com.sun.rave.propertyeditors.StringPropertyEditor")
> public Object getText() {
> return super.getText();
> }
> @@ -361,7 +362,7 @@
> * documentation for that attribute.
> * </p>
> */
> - @Property(name="dateFormatPattern", displayName="Date Format Pattern", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.DateFormatPatternsEditor", shortDescription="The date format pattern to use (e.g., yyyy-MM-dd).")
> + @Property(name="dateFormatPattern", displayName="Date Format Pattern", category="Appearance", shortDescription="The date format pattern to use (e.g., yyyy-MM-dd).")
> private String dateFormatPattern = null;
>
> /**
>
> File [changed]: TableRowGroup.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/TableRowGroup.java?r1=1.2&r2=1.3
> Delta lines: +4 -4
> -------------------
> --- TableRowGroup.java 22 Feb 2007 18:15:08 -0000 1.2
> +++ TableRowGroup.java 26 Feb 2007 22:46:27 -0000 1.3
> @@ -216,7 +216,7 @@
> * example, to align cell contents on colons, set <code>align="char"</code> and
> * <code>char=":"</code>
> */
> - @Property(name="align", displayName="Horizontal Alignment Cells In Group", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.TableAlignEditor")
> + @Property(name="align", displayName="Horizontal Alignment Cells In Group", category="Appearance")
> private String align = null;
>
> /**
> @@ -492,7 +492,7 @@
> * that resolves to a backing bean of type
> * <code>com.sun.data.provider.TableDataFilter</code>.
> */
> - @Property(name="tableDataFilter", displayName="Table Data Filter", category="Data", isHidden=true, isAttribute=true, editorClassName="com.sun.webui.jsf.component.propertyeditors.FieldKeyEditor")
> + @Property(name="tableDataFilter", displayName="Table Data Filter", category="Data", isHidden=true, isAttribute=true)
> private TableDataFilter tableDataFilter = null;
>
> /**
> @@ -502,7 +502,7 @@
> * that resolves to a backing bean of type
> * <code>com.sun.data.provider.TableDataSorter</code>.
> */
> - @Property(name="tableDataSorter", displayName="Table Data Sorter", category="Data", isHidden=true, isAttribute=true, editorClassName="com.sun.webui.jsf.component.propertyeditors.FieldKeyEditor")
> + @Property(name="tableDataSorter", displayName="Table Data Sorter", category="Data", isHidden=true, isAttribute=true)
> private TableDataSorter tableDataSorter = null;
>
> /**
> @@ -522,7 +522,7 @@
> * each cell's content to be aligned on the text baseline, the invisible line on
> * which text characters rest.
> */
> - @Property(name="valign", displayName="Vertical Alignment Of Cells In Group", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.HtmlVerticalAlignEditor")
> + @Property(name="valign", displayName="Vertical Alignment Of Cells In Group", category="Appearance")
> private String valign = null;
>
> /**
>
> File [changed]: TreeNode.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/TreeNode.java?r1=1.3&r2=1.4
> Delta lines: +1 -1
> -------------------
> --- TreeNode.java 22 Feb 2007 18:27:47 -0000 1.3
> +++ TreeNode.java 26 Feb 2007 22:46:27 -0000 1.4
> @@ -394,7 +394,7 @@
> * attribute in the tree components. The target attribute is useful only with
> * the url attribute, and does not apply when a facet is used.
> */
> - @Property(name="target", displayName="Hyperlink Target", category="Behavior", editorClassName="com.sun.webui.jsf.component.propertyeditors.FrameTargetsEditor")
> + @Property(name="target", displayName="Hyperlink Target", category="Behavior")
> private String target = null;
>
> /**
>
> File [changed]: PasswordField.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/PasswordField.java?r1=1.2&r2=1.3
> Delta lines: +1 -1
> -------------------
> --- PasswordField.java 22 Feb 2007 18:15:08 -0000 1.2
> +++ PasswordField.java 26 Feb 2007 22:46:27 -0000 1.3
> @@ -113,7 +113,7 @@
> }
>
> // Hide text
> - @Property(name="text", isHidden=true, isAttribute=false)
> + @Property(name="text", isHidden=true, isAttribute=false, editorClassName="com.sun.rave.propertyeditors.StringPropertyEditor")
> public Object getText() {
> return super.getText();
> }
>
> File [changed]: ImageComponent.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/ImageComponent.java?r1=1.2&r2=1.3
> Delta lines: +2 -2
> -------------------
> --- ImageComponent.java 22 Feb 2007 18:15:08 -0000 1.2
> +++ ImageComponent.java 26 Feb 2007 22:46:27 -0000 1.3
> @@ -116,7 +116,7 @@
> * <p>Specifies the position of the image with respect to its context.
> * Valid values are: bottom (the default); middle; top; left; right.</p>
> */
> - @Property(name="align", displayName="Align", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.HtmlAlignEditor")
> + @Property(name="align", displayName="Align", category="Appearance")
> private String align = null;
>
> /**
> @@ -303,7 +303,7 @@
> /**
> * <p>The identifier of the desired theme image.</p>
> */
> - @Property(name="icon", displayName="Icon", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.ThemeIconsEditor")
> + @Property(name="icon", displayName="Icon", category="Appearance")
> private String icon = null;
>
> /**
>
> File [changed]: ImageHyperlink.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/ImageHyperlink.java?r1=1.2&r2=1.3
> Delta lines: +3 -3
> -------------------
> --- ImageHyperlink.java 22 Feb 2007 18:15:09 -0000 1.2
> +++ ImageHyperlink.java 26 Feb 2007 22:46:27 -0000 1.3
> @@ -195,7 +195,7 @@
> * <p>Specifies the position of the image with respect to its context.
> * Valid values are: bottom (the default); middle; top; left; right.</p>
> */
> - @Property(name="align", displayName="Align", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.HtmlAlignEditor")
> + @Property(name="align", displayName="Align", category="Appearance")
> private String align = null;
>
> /**
> @@ -373,7 +373,7 @@
> /**
> * <p>The identifier of the desired theme image.</p>
> */
> - @Property(name="icon", displayName="Icon", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.ThemeIconsEditor")
> + @Property(name="icon", displayName="Icon", category="Appearance")
> private String icon = null;
>
> /**
> @@ -430,7 +430,7 @@
> * <p>Specifies where the text will be placed relative to the image. The valid
> * values currently are "right" or "left".</p>
> */
> - @Property(name="textPosition", displayName="Text Position", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.HtmlHorizontalAlignEditor")
> + @Property(name="textPosition", displayName="Text Position", category="Appearance")
> private String textPosition = null;
>
> /**
>
> File [changed]: Alert.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/Alert.java?r1=1.3&r2=1.4
> Delta lines: +2 -2
> -------------------
> --- Alert.java 22 Feb 2007 18:27:47 -0000 1.3
> +++ Alert.java 26 Feb 2007 22:46:27 -0000 1.4
> @@ -371,7 +371,7 @@
> /**
> * <p>The window (target) in which to load the link that is specified with linkText.</p>
> */
> - @Property(name="linkTarget", displayName="Link Target", category="Navigation", editorClassName="com.sun.webui.jsf.component.propertyeditors.FrameTargetsEditor")
> + @Property(name="linkTarget", displayName="Link Target", category="Navigation")
> private String linkTarget = null;
>
> /**
> @@ -625,7 +625,7 @@
> * "information", "success", "warning" or "error". The type specified determines
> * which icon is rendered for the alert.</p>
> */
> - @Property(name="type", displayName="Alert Type", category="Advanced", editorClassName="com.sun.webui.jsf.component.propertyeditors.AlertTypesEditor")
> + @Property(name="type", displayName="Alert Type", category="Advanced")
> private String type = null;
>
> /**
>
> File [changed]: Field.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/Field.java?r1=1.2&r2=1.3
> Delta lines: +3 -2
> -------------------
> --- Field.java 22 Feb 2007 18:15:09 -0000 1.2
> +++ Field.java 26 Feb 2007 22:46:27 -0000 1.3
> @@ -466,7 +466,7 @@
> * label attribute has been set. Valid values are 1 (largest), 2 and
> * 3 (smallest). The default value is 2.</p>
> */
> - @Property(name="labelLevel", displayName="Label Level", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.LabelLevelsEditor")
> + @Property(name="labelLevel", displayName="Label Level", category="Appearance")
> private int labelLevel = Integer.MIN_VALUE;
> private boolean labelLevel_set = false;
>
> @@ -1124,7 +1124,8 @@
> * expression, the corresponding value will be updated
> * if validation succeeds.</p>
> */
> - @Property(name="text", displayName="Text", category="Appearance")
> + @Property(name="text", displayName="Text", category="Appearance",
> + editorClassName="com.sun.rave.propertyeditors.StringPropertyEditor")
> public Object getText() {
> return getValue();
> }
>
> File [changed]: Hyperlink.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/Hyperlink.java?r1=1.3&r2=1.4
> Delta lines: +5 -4
> -------------------
> --- Hyperlink.java 22 Feb 2007 18:27:47 -0000 1.3
> +++ Hyperlink.java 26 Feb 2007 22:46:27 -0000 1.4
> @@ -746,7 +746,7 @@
> * valid for the target attribute of a HTML anchor element are also valid
> * for this attribute in this component</p>
> */
> - @Property(name="target", displayName="Target", category="Behavior", editorClassName="com.sun.webui.jsf.component.propertyeditors.FrameTargetsEditor")
> + @Property(name="target", displayName="Target", category="Behavior")
> private String target = null;
>
> /**
> @@ -780,7 +780,8 @@
> /**
> * <p>The text to be displayed for the hyperlink.</p>
> */
> - @Property(name="text", displayName="text", category="Appearance", isDefault=true)
> + @Property(name="text", displayName="text", category="Appearance", isDefault=true,
> + editorClassName="com.sun.rave.propertyeditors.StringPropertyEditor")
> public Object getText() {
> return getValue();
> }
> @@ -830,7 +831,7 @@
> /**
> * <p>The MIME content type of the resource specified by this component.</p>
> */
> - @Property(name="type", displayName="Type", category="Advanced", editorClassName="com.sun.webui.jsf.component.propertyeditors.MimeTypesEditor")
> + @Property(name="type", displayName="Type", category="Advanced")
> private String type = null;
>
> /**
> @@ -898,7 +899,7 @@
> /**
> * <p>The language code of the resource designated by this hyperlink.</p>
> */
> - @Property(name="urlLang", displayName="URL Lang", category="Advanced", editorClassName="com.sun.webui.jsf.component.propertyeditors.LanguagesEditor")
> + @Property(name="urlLang", displayName="URL Lang", category="Advanced")
> private String urlLang = null;
>
> /**
>
> File [changed]: StaticText.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/StaticText.java?r1=1.2&r2=1.3
> Delta lines: +2 -1
> -------------------
> --- StaticText.java 22 Feb 2007 18:15:09 -0000 1.2
> +++ StaticText.java 26 Feb 2007 22:46:28 -0000 1.3
> @@ -446,7 +446,8 @@
> /**
> * <p>The text to be displayed for this component.</p>
> */
> - @Property(name="text", displayName="Text", category="Appearance", isDefault=true)
> + @Property(name="text", displayName="Text", category="Appearance", isDefault=true,
> + editorClassName="com.sun.rave.propertyeditors.StringPropertyEditor")
> public Object getText() {
> return getValue();
> }
>
> File [changed]: TableColumn.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/TableColumn.java?r1=1.2&r2=1.3
> Delta lines: +7 -5
> -------------------
> --- TableColumn.java 22 Feb 2007 18:15:09 -0000 1.2
> +++ TableColumn.java 26 Feb 2007 22:46:28 -0000 1.3
> @@ -153,7 +153,7 @@
> * <code>align="char"</code> and <code>char=":" </code>Some browsers do not
> * support aligning on the character.
> */
> - @Property(name="align", displayName="Horizontal Alignment", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.TableAlignEditor")
> + @Property(name="align", displayName="Horizontal Alignment", category="Appearance")
> private String align = null;
>
> /**
> @@ -167,7 +167,8 @@
> * objects are aligned "center". All columns, including select columns, are
> * aligned "left" by default. Note that the align property overrides this value.
> */
> - @Property(name="alignKey", displayName="Horizontal Alignment Key", category="Appearance")
> + @Property(name="alignKey", displayName="Horizontal Alignment Key", category="Appearance",
> + editorClassName="com.sun.rave.propertyeditors.StringPropertyEditor")
> private Object alignKey = null;
>
> /**
> @@ -494,14 +495,15 @@
> * a String. The <code>sort</code> attribute is required for a column to be shown
> * as sortable.
> */
> - @Property(name="sort", displayName="Sort Key", category="Data")
> + @Property(name="sort", displayName="Sort Key", category="Data",
> + editorClassName="com.sun.rave.propertyeditors.StringPropertyEditor")
> private Object sort = null;
>
> /**
> * The theme identifier to use for the sort button that is displayed in the column
> * header. Use this attribute to override the default image.
> */
> - @Property(name="sortIcon", displayName="Sort Icon", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.ThemeIconsEditor")
> + @Property(name="sortIcon", displayName="Sort Icon", category="Appearance")
> private String sortIcon = null;
>
> /**
> @@ -563,7 +565,7 @@
> * each cell's content to be aligned on the text baseline, the invisible line on
> * which text characters rest.
> */
> - @Property(name="valign", displayName="Vertical Position", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.HtmlVerticalAlignEditor")
> + @Property(name="valign", displayName="Vertical Position", category="Appearance")
> private String valign = null;
>
> /**
>
> File [changed]: Tab.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/Tab.java?r1=1.1&r2=1.2
> Delta lines: +2 -1
> -------------------
> --- Tab.java 16 Feb 2007 01:18:28 -0000 1.1
> +++ Tab.java 26 Feb 2007 22:46:28 -0000 1.2
> @@ -84,7 +84,8 @@
> return super.getValue();
> }
>
> - @Property(shortDescription="The display label for this tab")
> + @Property(shortDescription="The display label for this tab",
> + editorClassName="com.sun.rave.propertyeditors.StringPropertyEditor")
> @Override
> public Object getText() {
> return super.getText();
>
> File [changed]: PageAlert.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/PageAlert.java?r1=1.2&r2=1.3
> Delta lines: +1 -1
> -------------------
> --- PageAlert.java 22 Feb 2007 18:15:10 -0000 1.2
> +++ PageAlert.java 26 Feb 2007 22:46:28 -0000 1.3
> @@ -511,7 +511,7 @@
> /**
> * <p>The type or category of alert. The type attribute can be set to one of the following: "question", "information", "warning" or "error". The default type is error.</p>
> */
> - @Property(name="type", displayName="Alert Type", category="Advanced", editorClassName="com.sun.webui.jsf.component.propertyeditors.PageAlertTypesEditor")
> + @Property(name="type", displayName="Alert Type", category="Advanced")
> private String type = null;
>
> /**
>
> File [changed]: Scheduler.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/Scheduler.java?r1=1.2&r2=1.3
> Delta lines: +1 -1
> -------------------
> --- Scheduler.java 22 Feb 2007 18:15:10 -0000 1.2
> +++ Scheduler.java 26 Feb 2007 22:46:28 -0000 1.3
> @@ -1776,7 +1776,7 @@
> * documentation for that attribute.
> * </p>
> */
> - @Property(name="dateFormatPattern", displayName="Date Format Pattern", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.DateFormatPatternsEditor", shortDescription="The date format pattern to use (e.g., yyyy-MM-dd).")
> + @Property(name="dateFormatPattern", displayName="Date Format Pattern", category="Appearance", shortDescription="The date format pattern to use (e.g., yyyy-MM-dd).")
> private String dateFormatPattern = null;
>
> /**
>
> File [changed]: TabSet.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/TabSet.java?r1=1.1&r2=1.2
> Delta lines: +1 -1
> -------------------
> --- TabSet.java 16 Feb 2007 01:18:54 -0000 1.1
> +++ TabSet.java 26 Feb 2007 22:46:28 -0000 1.2
> @@ -289,7 +289,7 @@
> /**
> * The id of the selected tab.
> */
> - @Property(name="selected", displayName="Selected", category="Data", editorClassName="com.sun.webui.jsf.component.propertyeditors.TabIdsEditor")
> + @Property(name="selected", displayName="Selected", category="Data")
>
> /**
> * The id of the selected tab.
>
> File [changed]: EditableList.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/EditableList.java?r1=1.2&r2=1.3
> Delta lines: +1 -1
> -------------------
> --- EditableList.java 22 Feb 2007 18:15:10 -0000 1.2
> +++ EditableList.java 26 Feb 2007 22:46:28 -0000 1.3
> @@ -1552,7 +1552,7 @@
> * <p>Sets the style level for the generated labels. Valid values
> * are 1 (largest), 2 and 3 (smallest). The default value is 2.</p>
> */
> - @Property(name="labelLevel", displayName="Label Level", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.LabelLevelsEditor")
> + @Property(name="labelLevel", displayName="Label Level", category="Appearance")
> private int labelLevel = Integer.MIN_VALUE;
> private boolean labelLevel_set = false;
>
>
> File [changed]: Checkbox.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/Checkbox.java?r1=1.1&r2=1.2
> Delta lines: +1 -1
> -------------------
> --- Checkbox.java 16 Feb 2007 01:01:51 -0000 1.1
> +++ Checkbox.java 26 Feb 2007 22:46:28 -0000 1.2
> @@ -349,7 +349,7 @@
> * label attribute has been set. Valid values are 1 (largest), 2 and
> * 3 (smallest). The default value is 3.</p>
> */
> - @Property(name="labelLevel", displayName="Label Level", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.LabelLevelsEditor")
> + @Property(name="labelLevel", displayName="Label Level", category="Appearance")
> private int labelLevel = Integer.MIN_VALUE;
> private boolean labelLevel_set = false;
>
>
> File [changed]: Form.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/Form.java?r1=1.2&r2=1.3
> Delta lines: +1 -1
> -------------------
> --- Form.java 22 Feb 2007 18:15:10 -0000 1.2
> +++ Form.java 26 Feb 2007 22:46:28 -0000 1.3
> @@ -1633,7 +1633,7 @@
> /**
> * <p>Use this attribute to set the target of the XHTML form tag.</p>
> */
> - @Property(name="target", displayName="Target", category="Behavior", editorClassName="com.sun.webui.jsf.component.propertyeditors.FrameTargetsEditor")
> + @Property(name="target", displayName="Target", category="Behavior")
> private String target = null;
>
> public String getTarget() {
>
> File [changed]: HelpInline.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/HelpInline.java?r1=1.2&r2=1.3
> Delta lines: +3 -2
> -------------------
> --- HelpInline.java 22 Feb 2007 18:15:10 -0000 1.2
> +++ HelpInline.java 26 Feb 2007 22:46:29 -0000 1.3
> @@ -184,7 +184,8 @@
> /**
> * <p>The inline help text to display.</p>
> */
> - @Property(name="text", displayName="text", category="Appearance", isDefault=true)
> + @Property(name="text", displayName="text", category="Appearance", isDefault=true,
> + editorClassName="com.sun.rave.propertyeditors.StringPropertyEditor")
> public Object getText() {
> return getValue();
> }
> @@ -201,7 +202,7 @@
> * <p>The type of inline help to display. Valid values are "page" or "field".
> * Page help is displayed by default.</p>
> */
> - @Property(name="type", displayName="Type of Help", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.HelpTypesEditor")
> + @Property(name="type", displayName="Type of Help", category="Appearance")
> private String type = null;
>
> public String getType() {
>
> File [changed]: Selector.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/Selector.java?r1=1.2&r2=1.3
> Delta lines: +1 -1
> -------------------
> --- Selector.java 22 Feb 2007 18:15:10 -0000 1.2
> +++ Selector.java 26 Feb 2007 22:46:29 -0000 1.3
> @@ -625,7 +625,7 @@
> * label attribute has been set. Valid values are 1 (largest), 2 and
> * 3 (smallest). The default value is 2.</p>
> */
> - @Property(name="labelLevel", displayName="Label Level", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.LabelLevelsEditor")
> + @Property(name="labelLevel", displayName="Label Level", category="Appearance")
> private int labelLevel = Integer.MIN_VALUE;
> private boolean labelLevel_set = false;
>
>
> File [changed]: Body.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/Body.java?r1=1.1&r2=1.2
> Delta lines: +1 -1
> -------------------
> --- Body.java 16 Feb 2007 01:01:06 -0000 1.1
> +++ Body.java 26 Feb 2007 22:46:29 -0000 1.2
> @@ -156,7 +156,7 @@
> * receives focus. By setting the focus attribute, you can ensure that
> * a particular component receives focus each time.</p>
> */
> - @Property(name="focus", displayName="Component to receive focus", category="Behavior", isDefault=true, editorClassName="com.sun.webui.jsf.component.propertyeditors.EventClientIdsEditor")
> + @Property(name="focus", displayName="Component to receive focus", category="Behavior", isDefault=true)
> private String focus = null;
>
> /**
>
> File [changed]: Message.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/Message.java?r1=1.2&r2=1.3
> Delta lines: +1 -1
> -------------------
> --- Message.java 22 Feb 2007 18:15:10 -0000 1.2
> +++ Message.java 26 Feb 2007 22:46:29 -0000 1.3
> @@ -126,7 +126,7 @@
> /**
> * <p>Identifier for the component associated with this message component.</p>
> */
> - @Property(name="for", displayName="Input Component", category="Behavior", editorClassName="com.sun.webui.jsf.component.propertyeditors.InputComponentIdsEditor")
> + @Property(name="for", displayName="Input Component", category="Behavior")
> private String _for = null;
>
> /**
>
> File [changed]: Button.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/Button.java?r1=1.2&r2=1.3
> Delta lines: +3 -2
> -------------------
> --- Button.java 22 Feb 2007 18:15:11 -0000 1.2
> +++ Button.java 26 Feb 2007 22:46:29 -0000 1.3
> @@ -310,7 +310,7 @@
> /**
> * <p>The identifier key of a theme image to be used for the button. </p>
> */
> - @Property(name="icon", displayName="Icon", category="Appearance", isHidden=true, isAttribute=true, editorClassName="com.sun.webui.jsf.component.propertyeditors.ThemeIconsEditor")
> + @Property(name="icon", displayName="Icon", category="Appearance", isHidden=true, isAttribute=true)
> private String icon = null;
>
> /**
> @@ -1020,7 +1020,8 @@
> * an <code>imageURL</code> value is given, the button type is set to
> * <code>image</code>.</p>
> */
> - @Property(name="text", displayName="Button Text", category="Appearance", isDefault=true)
> + @Property(name="text", displayName="Button Text", category="Appearance", isDefault=true,
> + editorClassName="com.sun.rave.propertyeditors.StringPropertyEditor")
> public Object getText() {
> return getValue();
> }
>
> File [changed]: OrderableList.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/OrderableList.java?r1=1.2&r2=1.3
> Delta lines: +1 -1
> -------------------
> --- OrderableList.java 22 Feb 2007 18:15:11 -0000 1.2
> +++ OrderableList.java 26 Feb 2007 22:46:29 -0000 1.3
> @@ -1004,7 +1004,7 @@
> * <p>Sets the style level for the generated labels. Valid values
> * are 1 (largest), 2 and 3 (smallest). The default value is 2.</p>
> */
> - @Property(name="labelLevel", displayName="Label Level", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.LabelLevelsEditor")
> + @Property(name="labelLevel", displayName="Label Level", category="Appearance")
> private int labelLevel = Integer.MIN_VALUE;
> private boolean labelLevel_set = false;
>
>
> File [changed]: HiddenField.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/HiddenField.java?r1=1.2&r2=1.3
> Delta lines: +2 -1
> -------------------
> --- HiddenField.java 22 Feb 2007 18:15:11 -0000 1.2
> +++ HiddenField.java 26 Feb 2007 22:46:29 -0000 1.3
> @@ -212,7 +212,8 @@
> * expression, the corresponding value will be updated
> * if validation succeeds.</p>
> */
> - @Property(name="text", displayName="Text", category="Data", isDefault=true)
> + @Property(name="text", displayName="Text", category="Data", isDefault=true,
> + editorClassName="com.sun.rave.propertyeditors.StringPropertyEditor")
> public Object getText() {
> return getValue();
> }
>
> File [changed]: Alarm.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/Alarm.java?r1=1.2&r2=1.3
> Delta lines: +1 -1
> -------------------
> --- Alarm.java 22 Feb 2007 18:15:11 -0000 1.2
> +++ Alarm.java 26 Feb 2007 22:46:29 -0000 1.3
> @@ -546,7 +546,7 @@
> * </ul>
> * The default value is "ok", which renders no alarm icon.</p>
> */
> - @Property(name="severity", displayName="Severity", category="Appearance", isDefault=true, editorClassName="com.sun.webui.jsf.component.propertyeditors.AlertTypesEditor")
> + @Property(name="severity", displayName="Severity", category="Appearance", isDefault=true)
> private String severity = null;
>
> /**
>
> File [changed]: RbCbSelector.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/RbCbSelector.java?r1=1.2&r2=1.3
> Delta lines: +2 -1
> -------------------
> --- RbCbSelector.java 22 Feb 2007 18:15:11 -0000 1.2
> +++ RbCbSelector.java 26 Feb 2007 22:46:29 -0000 1.3
> @@ -389,6 +389,8 @@
> * true instance is returned and the control will behave as a
> * boolean control.
> */
> + @Property(name="selectedValue", category="Advanced",
> + editorClassName="com.sun.rave.propertyeditors.StringPropertyEditor")
> public Object getSelectedValue() {
> Object sv = _getSelectedValue();
> return sv == null ? trueSelectedValue : sv;
> @@ -760,7 +762,6 @@
> * If a boolean component is not selected, the <code>selected</code>
> * property value is a false <code>Boolean</code> instance.</p>
> */
> - @Property(name="selectedValue", category="Advanced")
> private Object _getSelectedValue() {
> return getItems();
> }
>
> File [changed]: CommonTask.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/CommonTask.java?r1=1.3&r2=1.4
> Delta lines: +4 -3
> -------------------
> --- CommonTask.java 22 Feb 2007 18:27:46 -0000 1.3
> +++ CommonTask.java 26 Feb 2007 22:46:29 -0000 1.4
> @@ -161,7 +161,7 @@
> * the task. The key <code>CTS_OVERVIEW</code> will generate
> * an image that can be used to mark tasks that are for overview information about the task</p>
> */
> - @Property(name="icon", displayName="icon", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.ThemeIconsEditor")
> + @Property(name="icon", displayName="icon", category="Appearance")
> private String icon = null;
>
> /**
> @@ -941,7 +941,7 @@
> * valid for the target attribute of a HTML anchor element are also valid
> * for this attribute in this component</p>
> */
> - @Property(name="target", displayName="Target", category="Behavior", editorClassName="com.sun.webui.jsf.component.propertyeditors.FrameTargetsEditor")
> + @Property(name="target", displayName="Target", category="Behavior")
> private String target = null;
>
> /**
> @@ -975,7 +975,8 @@
> /**
> * <p>The text to be displayed for the task.</p>
> */
> - @Property(name="text", displayName="text", category="Appearance", isDefault=true)
> + @Property(name="text", displayName="text", category="Appearance", isDefault=true,
> + editorClassName="com.sun.rave.propertyeditors.StringPropertyEditor")
> public Object getText() {
> return getValue();
> }
>
> File [changed]: Tree.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/Tree.java?r1=1.1&r2=1.2
> Delta lines: +1 -2
> -------------------
> --- Tree.java 16 Feb 2007 01:22:22 -0000 1.1
> +++ Tree.java 26 Feb 2007 22:46:30 -0000 1.2
> @@ -514,8 +514,7 @@
> * <p>Returns the id of the selected tree node. Should be cast to a String and
> * nothing else.</p>
> */
> - @Property(name="selected", displayName="Selected", category="Data",
> - editorClassName="com.sun.webui.jsf.component.propertyeditors.TreeNodeIdsEditor")
> + @Property(name="selected", displayName="Selected", category="Data")
> public String getSelected() {
> return (String) getValue();
> }
>
> File [changed]: Link.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/Link.java?r1=1.3&r2=1.4
> Delta lines: +3 -3
> -------------------
> --- Link.java 22 Feb 2007 18:27:47 -0000 1.3
> +++ Link.java 26 Feb 2007 22:46:30 -0000 1.4
> @@ -81,7 +81,7 @@
> * <p>Defines the character (charset) encoding of the target URL. Default
> * value is "ISO-8859-1".</p>
> */
> - @Property(name="charset", displayName="Charset", category="Advanced", editorClassName="com.sun.webui.jsf.component.propertyeditors.CharacterSetsEditor")
> + @Property(name="charset", displayName="Charset", category="Advanced")
> private String charset = null;
>
> /**
> @@ -150,7 +150,7 @@
> * targeted document. Default is "stylesheet". Other possible values
> * are described at w3.org.</p>
> */
> - @Property(name="rel", displayName="Rel", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.HtmlLinkTypesEditor")
> + @Property(name="rel", displayName="Rel", category="Appearance")
> private String rel = null;
>
> /**
> @@ -239,7 +239,7 @@
> * <p>Defines the ISO language code of the human language used in the target
> * URL file. For example, valid values might be en, fr, es.</p>
> */
> - @Property(name="urlLang", displayName="URL Language", category="Advanced", editorClassName="com.sun.webui.jsf.component.propertyeditors.LanguagesEditor")
> + @Property(name="urlLang", displayName="URL Language", category="Advanced")
> private String urlLang = null;
>
> /**
>
> File [changed]: Upload.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/Upload.java?r1=1.1&r2=1.2
> Delta lines: +1 -1
> -------------------
> --- Upload.java 16 Feb 2007 01:23:18 -0000 1.1
> +++ Upload.java 26 Feb 2007 22:46:30 -0000 1.2
> @@ -497,7 +497,7 @@
> }
>
> // Hide text
> - @Property(name="text", isHidden=true, isAttribute=false)
> + @Property(name="text", isHidden=true, isAttribute=false, editorClassName="com.sun.rave.propertyeditors.StringPropertyEditor")
> public Object getText() {
> return _getText();
> }
>
> File [changed]: Property.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/Property.java?r1=1.2&r2=1.3
> Delta lines: +1 -1
> -------------------
> --- Property.java 22 Feb 2007 18:15:12 -0000 1.2
> +++ Property.java 26 Feb 2007 22:46:30 -0000 1.3
> @@ -534,7 +534,7 @@
> * is left. This attibute applies to labels that are specified with either
> * the label attribute or the label facet.</p>
> */
> - @com.sun.faces.annotation.Property(name="labelAlign", displayName="Label Alignment", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.HtmlHorizontalAlignEditor")
> + @com.sun.faces.annotation.Property(name="labelAlign", displayName="Label Alignment", category="Appearance")
> private String labelAlign = null;
>
> /**
>
> File [changed]: Label.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/Label.java?r1=1.2&r2=1.3
> Delta lines: +4 -3
> -------------------
> --- Label.java 22 Feb 2007 18:15:12 -0000 1.2
> +++ Label.java 26 Feb 2007 22:46:30 -0000 1.3
> @@ -468,7 +468,7 @@
> * to search its children to see whether any of them can be used for evaluating
> * the value of this "for" attribute.</p>
> */
> - @Property(name="for", displayName="Input Component", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.InputComponentIdsEditor")
> + @Property(name="for", displayName="Input Component", category="Appearance")
> private String _for = null;
>
> /**
> @@ -566,7 +566,7 @@
> * Valid values are 1, 2, and 3. The default label level is 2. Any label
> * level outside this range will result in no label level being added.</p>
> */
> - @Property(name="labelLevel", displayName="Style Level", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.LabelLevelsEditor")
> + @Property(name="labelLevel", displayName="Style Level", category="Appearance")
> private int labelLevel = Integer.MIN_VALUE;
> private boolean labelLevel_set = false;
>
> @@ -903,7 +903,8 @@
> * binding expression that corresponds to a message from a resource
> * bundle declared using <code>f:loadBundle</code>.</p>
> */
> - @Property(name="text", displayName="Label Text", category="Appearance", isDefault=true)
> + @Property(name="text", displayName="Label Text", category="Appearance", isDefault=true,
> + editorClassName="com.sun.rave.propertyeditors.StringPropertyEditor")
> public Object getText() {
> return getValue();
> }
>
> File [changed]: HelpWindow.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/HelpWindow.java?r1=1.1&r2=1.2
> Delta lines: +2 -1
> -------------------
> --- HelpWindow.java 16 Feb 2007 01:05:50 -0000 1.1
> +++ HelpWindow.java 26 Feb 2007 22:46:30 -0000 1.2
> @@ -240,7 +240,8 @@
> }
>
> // Hide text
> - @Property(name="text", isHidden=true, isAttribute=false)
> + @Property(name="text", isHidden=true, isAttribute=false,
> + editorClassName="com.sun.rave.propertyeditors.StringPropertyEditor")
> public Object getText() {
> return _getText();
> }
>
> File [changed]: RadioButton.java
> Url: https://woodstock.dev.java.net/source/browse/woodstock/webui/src/runtime/com/sun/webui/jsf/component/RadioButton.java?r1=1.1&r2=1.2
> Delta lines: +1 -1
> -------------------
> --- RadioButton.java 16 Feb 2007 01:16:18 -0000 1.1
> +++ RadioButton.java 26 Feb 2007 22:46:30 -0000 1.2
> @@ -330,7 +330,7 @@
> * label attribute has been set. Valid values are 1 (largest), 2 and
> * 3 (smallest). The default value is 3.</p>
> */
> - @Property(name="labelLevel", displayName="Label Level", category="Appearance", editorClassName="com.sun.webui.jsf.component.propertyeditors.LabelLevelsEditor")
> + @Property(name="labelLevel", displayName="Label Level", category="Appearance")
> private int labelLevel = Integer.MIN_VALUE;
> private boolean labelLevel_set = false;
>
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: cvs-unsubscribe_at_woodstock.dev.java.net
> For additional commands, e-mail: cvs-help_at_woodstock.dev.java.net
>
>