You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ha...@apache.org on 2008/06/11 14:15:34 UTC

svn commit: r666630 - in /myfaces/tomahawk/trunk/examples/simple/src/main/java/org/apache/myfaces/examples/subform: ./ SubFormBean.java

Author: hazems
Date: Wed Jun 11 05:15:34 2008
New Revision: 666630

URL: http://svn.apache.org/viewvc?rev=666630&view=rev
Log:
([TOMAHAWK-1279] promoting the subform component to Tomahawk.)

Added:
    myfaces/tomahawk/trunk/examples/simple/src/main/java/org/apache/myfaces/examples/subform/
    myfaces/tomahawk/trunk/examples/simple/src/main/java/org/apache/myfaces/examples/subform/SubFormBean.java

Added: myfaces/tomahawk/trunk/examples/simple/src/main/java/org/apache/myfaces/examples/subform/SubFormBean.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/simple/src/main/java/org/apache/myfaces/examples/subform/SubFormBean.java?rev=666630&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/examples/simple/src/main/java/org/apache/myfaces/examples/subform/SubFormBean.java (added)
+++ myfaces/tomahawk/trunk/examples/simple/src/main/java/org/apache/myfaces/examples/subform/SubFormBean.java Wed Jun 11 05:15:34 2008
@@ -0,0 +1,72 @@
+/*
+ * 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.examples.subform;
+
+/**
+ *
+ * @author Martin Marinschek
+ * @version $Revision$ $Date$
+ */
+public class SubFormBean
+{
+    private String _firstName;
+    private String _lastName;
+    private String _type;
+    private String _make;
+
+    public String getFirstName()
+    {
+        return _firstName;
+    }
+
+    public void setFirstName(String firstName)
+    {
+        _firstName = firstName;
+    }
+
+    public String getLastName()
+    {
+        return _lastName;
+    }
+
+    public void setLastName(String lastName)
+    {
+        _lastName = lastName;
+    }
+
+    public String getType()
+    {
+        return _type;
+    }
+
+    public void setType(String type)
+    {
+        _type = type;
+    }
+
+    public String getMake()
+    {
+        return _make;
+    }
+
+    public void setMake(String make)
+    {
+        _make = make;
+    }
+}