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

Quick Search    Search Deep

Source code: com/voytechs/html/component/SimpleComponent.java


1   /*
2    * File: SimpleComponent.java
3    * Auth: Mark Bednarczyk
4    * Date: DATE
5    *   Id: $Id: SimpleComponent.java,v 1.1.1.1 2002/01/23 23:52:48 voytechs Exp $
6    ********************************************
7    * $Log: SimpleComponent.java,v $
8    * Revision 1.1.1.1  2002/01/23 23:52:48  voytechs
9    * Initial public release, BETA 1.0 - voytechs
10   *
11   */
12  package com.voytechs.html.component;
13  
14  import java.lang.*;
15  
16  /**
17   * Base class for all HTML elements considered simple. ie. TableComponents, FormComponents 
18   * are considered complex.
19   */
20  public abstract class SimpleComponent 
21    extends Component {
22  
23    /* Internal attributes */
24  
25    /**
26     *
27     * @param
28     * @exception
29     */
30    public SimpleComponent() {
31      super();
32  
33    }
34  
35    /**
36     * Test function for SimpleComponent
37     * @param args command line arguments
38     */
39    public static void main(String [] args) {
40    }
41  
42  } /* END OF: SimpleComponent */