You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2011/10/18 20:50:51 UTC

svn commit: r1185795 - in /myfaces/tobago/trunk/tobago-extension/tobago-taglib-extension/src/main: java-jsf-1.1/org/apache/myfaces/tobago/internal/taglib/extension/ java-jsf-1.2/org/apache/myfaces/tobago/internal/taglib/extension/

Author: bommel
Date: Tue Oct 18 18:50:51 2011
New Revision: 1185795

URL: http://svn.apache.org/viewvc?rev=1185795&view=rev
Log:
(TOBAGO-1039)
SelectManyShuttle component
fixed jsf-1.1 tx tag
added missing license

Modified:
    myfaces/tobago/trunk/tobago-extension/tobago-taglib-extension/src/main/java-jsf-1.1/org/apache/myfaces/tobago/internal/taglib/extension/SelectManyShuttleExtensionTag.java
    myfaces/tobago/trunk/tobago-extension/tobago-taglib-extension/src/main/java-jsf-1.2/org/apache/myfaces/tobago/internal/taglib/extension/SelectManyShuttleExtensionTag.java

Modified: myfaces/tobago/trunk/tobago-extension/tobago-taglib-extension/src/main/java-jsf-1.1/org/apache/myfaces/tobago/internal/taglib/extension/SelectManyShuttleExtensionTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-extension/tobago-taglib-extension/src/main/java-jsf-1.1/org/apache/myfaces/tobago/internal/taglib/extension/SelectManyShuttleExtensionTag.java?rev=1185795&r1=1185794&r2=1185795&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-extension/tobago-taglib-extension/src/main/java-jsf-1.1/org/apache/myfaces/tobago/internal/taglib/extension/SelectManyShuttleExtensionTag.java (original)
+++ myfaces/tobago/trunk/tobago-extension/tobago-taglib-extension/src/main/java-jsf-1.1/org/apache/myfaces/tobago/internal/taglib/extension/SelectManyShuttleExtensionTag.java Tue Oct 18 18:50:51 2011
@@ -19,6 +19,9 @@ package org.apache.myfaces.tobago.intern
 
 import org.apache.myfaces.tobago.apt.annotation.ExtensionTag;
 import org.apache.myfaces.tobago.apt.annotation.Tag;
+import org.apache.myfaces.tobago.apt.annotation.TagAttribute;
+import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
+import org.apache.myfaces.tobago.internal.taglib.SelectManyShuttleTag;
 import org.apache.myfaces.tobago.internal.taglib.declaration.HasBinding;
 import org.apache.myfaces.tobago.internal.taglib.declaration.HasConverter;
 import org.apache.myfaces.tobago.internal.taglib.declaration.HasConverterMessage;
@@ -73,7 +76,6 @@ public class SelectManyShuttleExtensionT
   private String markup;
   private String tabIndex;
   private String focus;
-  private String renderRange;
   private String validatorMessage;
   private String converterMessage;
   private String requiredMessage;
@@ -156,9 +158,6 @@ public class SelectManyShuttleExtensionT
     if (markup != null) {
       selectManyShuttleTag.setMarkup(markup);
     }
-    if (renderRange != null) {
-      selectManyShuttleTag.setRenderRange(renderRange);
-    }
     if (tabIndex != null) {
       selectManyShuttleTag.setTabIndex(tabIndex);
     }
@@ -208,7 +207,6 @@ public class SelectManyShuttleExtensionT
     selectManyShuttleTag = null;
     labelTag = null;
     focus = null;
-    renderRange = null;
     validatorMessage = null;
     converterMessage = null;
     requiredMessage = null;
@@ -239,10 +237,6 @@ public class SelectManyShuttleExtensionT
     this.onchange = onchange;
   }
 
-  public void setInline(String inline) {
-    this.inline = inline;
-  }
-
   public void setLabel(String label) {
     this.label = label;
   }
@@ -300,10 +294,6 @@ public class SelectManyShuttleExtensionT
     this.focus = focus;
   }
 
-  public void setRenderRange(String renderRange) {
-    this.renderRange = renderRange;
-  }
-
   public void setValidatorMessage(String validatorMessage) {
     this.validatorMessage = validatorMessage;
   }
@@ -319,5 +309,4 @@ public class SelectManyShuttleExtensionT
   public void setFieldId(String fieldId) {
     this.fieldId = fieldId;
   }
-
 }

Modified: myfaces/tobago/trunk/tobago-extension/tobago-taglib-extension/src/main/java-jsf-1.2/org/apache/myfaces/tobago/internal/taglib/extension/SelectManyShuttleExtensionTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-extension/tobago-taglib-extension/src/main/java-jsf-1.2/org/apache/myfaces/tobago/internal/taglib/extension/SelectManyShuttleExtensionTag.java?rev=1185795&r1=1185794&r2=1185795&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-extension/tobago-taglib-extension/src/main/java-jsf-1.2/org/apache/myfaces/tobago/internal/taglib/extension/SelectManyShuttleExtensionTag.java (original)
+++ myfaces/tobago/trunk/tobago-extension/tobago-taglib-extension/src/main/java-jsf-1.2/org/apache/myfaces/tobago/internal/taglib/extension/SelectManyShuttleExtensionTag.java Tue Oct 18 18:50:51 2011
@@ -1,5 +1,22 @@
 package org.apache.myfaces.tobago.internal.taglib.extension;
 
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 import org.apache.myfaces.tobago.apt.annotation.DynamicExpression;
 import org.apache.myfaces.tobago.apt.annotation.ExtensionTag;
 import org.apache.myfaces.tobago.apt.annotation.Tag;