View Javadoc

1   /*
2    * Copyright 2005-2008 The Kuali Foundation
3    *
4    *
5    * Licensed under the Educational Community License, Version 2.0 (the "License");
6    * you may not use this file except in compliance with the License.
7    * You may obtain a copy of the License at
8    *
9    * http://www.opensource.org/licenses/ecl2.php
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.kuali.rice.kew.docsearch;
18  
19  import org.kuali.rice.kns.web.ui.Field;
20  import org.kuali.rice.kns.web.ui.Row;
21  
22  
23  
24  /**
25   * A Row is a collection of {@link Field} objects that represents a row of results
26   * from a {@link WorkflowLookupable}.
27   *
28   * @deprecated
29   *
30   * @author Kuali Rice Team (rice.collab@kuali.org)
31   */
32  public class DocumentSearchRow_DEPR extends Row {
33  //
34  //    /**
35  //     *
36  //     */
37  //    public DocumentSearchRow_DEPR() {
38  //        // TODO jjhanso - THIS CONSTRUCTOR NEEDS A JAVADOC
39  //        super();
40  //        // TODO Auto-generated constructor stub
41  //    }
42  //
43  //    /**
44  //     *
45  //     * @param field
46  //     */
47  //    public DocumentSearchRow_DEPR(DocumentSearchField field) {
48  //        // TODO jjhanso - THIS CONSTRUCTOR NEEDS A JAVADOC
49  //        super(field);
50  //        // TODO Auto-generated constructor stub
51  //    }
52  //
53  //    /**
54  //     *
55  //     * @param fields
56  //     */
57  //    public DocumentSearchRow_DEPR(List<Field> fields) {
58  //        super(fields);
59  //        super.setHidden(false);
60  //    }
61  //
62  //
63  //
64  //    public DocumentSearchField getField(int index) {
65  //        while (super.getFields().size() <= index) {
66  //            DocumentSearchField field = new DocumentSearchField();
67  //            super.getFields().add(field);
68  //        }
69  //        return (DocumentSearchField) super.getFields().get(index);
70  //    }
71  
72  }