This page was generated using Webiyo. See its source code and unit tests.
|
org/webiyo/xml/AttributeType.javapackage org.webiyo.xml; public class AttributeType { private final String name; public AttributeType(String name) { this.name = name; } public String getName() { return name; } } |