1 package de.webman.content.attributs;2 3 /**4 Datenstruktur zum aufbewahren eines Attributes im Attributinterface5 6 * @author $Author: sebastian $7 * @version $Revision: 1.1 $8 */9 10 class Attribute11 {12 public String name;13 public String value;14 public int type;15 16 public Attribute(String name, String value, int type)17 {18 this.name = name;19 this.value = value;20 this.type = type;21 }22 }