KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > de > webman > content > attributs > Attribute


1 package de.webman.content.attributs;
2
3 /**
4     Datenstruktur zum aufbewahren eines Attributes im Attributinterface
5
6  * @author $Author: sebastian $
7  * @version $Revision: 1.1 $
8 */

9
10 class Attribute
11 {
12     public String JavaDoc name;
13     public String JavaDoc value;
14     public int type;
15     
16     public Attribute(String JavaDoc name, String JavaDoc value, int type)
17     {
18         this.name = name;
19         this.value = value;
20         this.type = type;
21     }
22 }
Popular Tags