01: package de.webman.content.attributs;
02:
03: /**
04: Datenstruktur zum aufbewahren eines Attributes im Attributinterface
05:
06: * @author $Author: sebastian $
07: * @version $Revision: 1.1 $
08: */
09:
10: class Attribute {
11: public String name;
12: public String value;
13: public int type;
14:
15: public Attribute(String name, String value, int type) {
16: this.name = name;
17: this.value = value;
18: this.type = type;
19: }
20: }
|