~ubuntu-branches/ubuntu/trusty/libstruts1.2-java/trusty-proposed

« back to all changes in this revision

Viewing changes to contrib/scaffold/src/java/org/apache/struts/scaffold/NullForm.java

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Vandyck
  • Date: 2004-11-19 15:35:25 UTC
  • Revision ID: james.westby@ubuntu.com-20041119153525-mdu08a76z4zo67xt
Tags: upstream-1.2.4
ImportĀ upstreamĀ versionĀ 1.2.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $Header: /home/cvs/jakarta-struts/contrib/scaffold/src/java/org/apache/struts/scaffold/NullForm.java,v 1.2 2004/03/14 07:15:03 sraeburn Exp $
 
3
 * $Revision: 1.2 $
 
4
 * $Date: 2004/03/14 07:15:03 $
 
5
 *
 
6
 * Copyright 2001-2004 The Apache Software Foundation.
 
7
 * 
 
8
 * Licensed under the Apache License, Version 2.0 (the "License");
 
9
 * you may not use this file except in compliance with the License.
 
10
 * You may obtain a copy of the License at
 
11
 * 
 
12
 *      http://www.apache.org/licenses/LICENSE-2.0
 
13
 * 
 
14
 * Unless required by applicable law or agreed to in writing, software
 
15
 * distributed under the License is distributed on an "AS IS" BASIS,
 
16
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
17
 * See the License for the specific language governing permissions and
 
18
 * limitations under the License.
 
19
 */
 
20
 
 
21
package org.apache.struts.scaffold;
 
22
 
 
23
 
 
24
import org.apache.struts.action.ActionForm;
 
25
 
 
26
 
 
27
/**
 
28
 * Empty (or "null") form for use with "formless" forms.
 
29
 * The Struts JSP tags require a form bean to create elements like
 
30
 * buttons, even if one is not actually needed.
 
31
 * The NullForm placates the tag by providing an empty form.
 
32
 */
 
33
public final class NullForm extends ActionForm {
 
34
 
 
35
    // blank form for use with command buttons
 
36
 
 
37
} // end NullForm
 
 
b'\\ No newline at end of file'