Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/aendvari/tethys/tag/logic/BooleanFalseTag.java


1   /*
2    * BooleanFalseTag.java
3    *
4    * Copyright (c) 2001, 2002 Aendvari, Ltd. All Rights Reserved.
5    *
6    * See the file LICENSE for terms of use.
7    *
8    */
9   
10  package com.aendvari.tethys.tag.logic;
11  
12  import java.io.IOException;
13  
14  import javax.servlet.http.*;
15  import javax.servlet.jsp.*;
16  import javax.servlet.jsp.tagext.*;
17  
18  import com.aendvari.common.model.*;
19  import com.aendvari.tethys.*;
20  import com.aendvari.tethys.tag.*;
21  import com.aendvari.tethys.context.*;
22  
23  
24  /**
25   * <p>Base class for boolean tag "false".</p>
26   *
27   * @author  Scott Milne
28   *
29   */
30  
31  public class BooleanFalseTag extends BooleanTag
32  {
33    /* Variables */
34  
35  
36    /* Constructor */
37  
38    public BooleanFalseTag()
39    {
40      super();
41      value = "false";
42    }
43  }
44