You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by hn...@apache.org on 2022/12/02 14:58:53 UTC

[myfaces-tobago] 01/02: feat(selectManyList): preliminary

This is an automated email from the ASF dual-hosted git repository.

hnoeth pushed a commit to branch t5_selectMany
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit f37bfa5ba66fab2899358ec4ed9d48e4483ae801
Author: Henning Noeth <hn...@apache.org>
AuthorDate: Fri Dec 2 15:41:39 2022 +0100

    feat(selectManyList): preliminary
    
    Issue: TOBAGO-2159
---
 .../tobago/internal/taglib/component/SelectManyListTagDeclaration.java  | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/SelectManyListTagDeclaration.java b/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/SelectManyListTagDeclaration.java
index 88efbd3bcd..e7572d504b 100644
--- a/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/SelectManyListTagDeclaration.java
+++ b/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/SelectManyListTagDeclaration.java
@@ -20,6 +20,7 @@
 package org.apache.myfaces.tobago.internal.taglib.component;
 
 import org.apache.myfaces.tobago.apt.annotation.Behavior;
+import org.apache.myfaces.tobago.apt.annotation.Preliminary;
 import org.apache.myfaces.tobago.apt.annotation.Tag;
 import org.apache.myfaces.tobago.apt.annotation.TagAttribute;
 import org.apache.myfaces.tobago.apt.annotation.UIComponentTag;
@@ -54,6 +55,7 @@ import javax.faces.component.UISelectMany;
 /**
  * Render a multi selection option listbox.
  */
+@Preliminary
 @Tag(name = "selectManyList")
 @UIComponentTag(
   uiComponent = "org.apache.myfaces.tobago.component.UISelectManyList",