You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2013/10/31 09:03:16 UTC

svn commit: r1537398 - /myfaces/tobago/trunk/tobago-extension/tobago-sandbox/src/main/java/org/apache/myfaces/tobago/internal/taglib/sandbox/SplitLayoutTagDeclaration.java

Author: weber
Date: Thu Oct 31 08:03:15 2013
New Revision: 1537398

URL: http://svn.apache.org/r1537398
Log:
TOBAGO-1332 - SplitLayout: attribute orientation is required

Modified:
    myfaces/tobago/trunk/tobago-extension/tobago-sandbox/src/main/java/org/apache/myfaces/tobago/internal/taglib/sandbox/SplitLayoutTagDeclaration.java

Modified: myfaces/tobago/trunk/tobago-extension/tobago-sandbox/src/main/java/org/apache/myfaces/tobago/internal/taglib/sandbox/SplitLayoutTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-extension/tobago-sandbox/src/main/java/org/apache/myfaces/tobago/internal/taglib/sandbox/SplitLayoutTagDeclaration.java?rev=1537398&r1=1537397&r2=1537398&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-extension/tobago-sandbox/src/main/java/org/apache/myfaces/tobago/internal/taglib/sandbox/SplitLayoutTagDeclaration.java (original)
+++ myfaces/tobago/trunk/tobago-extension/tobago-sandbox/src/main/java/org/apache/myfaces/tobago/internal/taglib/sandbox/SplitLayoutTagDeclaration.java Thu Oct 31 08:03:15 2013
@@ -64,7 +64,7 @@ public interface SplitLayoutTagDeclarati
    * Possible values are 'HORIZONTAL' and 'VERTICAL'.
    */
 
-  @TagAttribute
+  @TagAttribute(required = true)
   @UIComponentTagAttribute(allowedValues = {"HORIZONTAL", "VERTICAL"})
   void setOrientation(String orientation);