You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2010/06/17 03:47:44 UTC

svn commit: r955447 - in /myfaces/tomahawk/trunk/core20/src/main/java/org/apache/myfaces/component: ChangeSelectProperties.java FocusBlurProperties.java

Author: lu4242
Date: Thu Jun 17 01:47:44 2010
New Revision: 955447

URL: http://svn.apache.org/viewvc?rev=955447&view=rev
Log:
TOMAHAWK-1474 Behavior support for components that contains event aware properties in jsf 2.0 module

Added:
    myfaces/tomahawk/trunk/core20/src/main/java/org/apache/myfaces/component/ChangeSelectProperties.java
    myfaces/tomahawk/trunk/core20/src/main/java/org/apache/myfaces/component/FocusBlurProperties.java

Added: myfaces/tomahawk/trunk/core20/src/main/java/org/apache/myfaces/component/ChangeSelectProperties.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core20/src/main/java/org/apache/myfaces/component/ChangeSelectProperties.java?rev=955447&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/core20/src/main/java/org/apache/myfaces/component/ChangeSelectProperties.java (added)
+++ myfaces/tomahawk/trunk/core20/src/main/java/org/apache/myfaces/component/ChangeSelectProperties.java Thu Jun 17 01:47:44 2010
@@ -0,0 +1,40 @@
+/*
+ * 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.
+ */
+package org.apache.myfaces.component;
+
+import org.apache.myfaces.buildtools.maven2.plugin.builder.annotation.JSFProperty;
+
+public interface ChangeSelectProperties
+{
+    /**
+     * HTML: Specifies a script to be invoked when the element is modified.
+     * 
+     */
+    @JSFProperty(clientEvent="change")
+    public abstract String getOnchange();
+
+
+    /**
+     * HTML: Specifies a script to be invoked when the element is selected.
+     * 
+     */
+    @JSFProperty(clientEvent="select")
+    public abstract String getOnselect();
+
+}

Added: myfaces/tomahawk/trunk/core20/src/main/java/org/apache/myfaces/component/FocusBlurProperties.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core20/src/main/java/org/apache/myfaces/component/FocusBlurProperties.java?rev=955447&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/core20/src/main/java/org/apache/myfaces/component/FocusBlurProperties.java (added)
+++ myfaces/tomahawk/trunk/core20/src/main/java/org/apache/myfaces/component/FocusBlurProperties.java Thu Jun 17 01:47:44 2010
@@ -0,0 +1,40 @@
+/*
+ * 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.
+ */
+package org.apache.myfaces.component;
+
+import org.apache.myfaces.buildtools.maven2.plugin.builder.annotation.JSFProperty;
+
+public interface FocusBlurProperties
+{
+
+    /**
+     * HTML: Specifies a script to be invoked when the element loses focus.
+     * 
+     */
+    @JSFProperty(clientEvent="blur")
+    public String getOnblur();
+    
+    /**
+     * HTML: Specifies a script to be invoked when the element receives focus.
+     * 
+     */
+    @JSFProperty(clientEvent="focus")
+    public String getOnfocus();
+    
+}