View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.myfaces.view.facelets.pss.acid.managed;
20  
21  import java.util.ArrayList;
22  import java.util.List;
23  import javax.annotation.PostConstruct;
24  import javax.faces.bean.ManagedBean;
25  import javax.faces.bean.RequestScoped;
26  
27  /**
28   *
29   * @author lu4242
30   */
31  @ManagedBean(name="testBean")
32  @RequestScoped
33  public class TestBean
34  {
35  
36      private List<ValueHolder> values = new ArrayList<ValueHolder>();
37      
38      private String param2;
39  
40      public TestBean()
41      {
42          param2 = "value2";
43      }
44      
45      @PostConstruct
46      public void init()
47      {
48          values.add(new ValueHolder("A-"+System.currentTimeMillis()));
49          values.add(new ValueHolder("B-"+System.currentTimeMillis()));
50          values.add(new ValueHolder("C-"+System.currentTimeMillis()));
51      }
52      
53      /**
54       * @return the values
55       */
56      public List<ValueHolder> getValues()
57      {
58          return values;
59      }
60  
61      /**
62       * @param values the values to set
63       */
64      public void setValues(List<ValueHolder> values)
65      {
66          this.values = values;
67      }
68  
69      /**
70       * @return the param2
71       */
72      public String getParam2()
73      {
74          return param2;
75      }
76  
77      /**
78       * @param param2 the param2 to set
79       */
80      public void setParam2(String param2)
81      {
82          this.param2 = param2;
83      }
84  
85      
86  }