1 package org.hedwig.core;
2 /***
3 * @author Keith Gaddis
4 *
5 * enclosing_type
6 */
7 public interface IAttribute {
8 String getName();
9 String getValue();
10 void setName(String name);
11 void setValue(String value);
12 }
This page was automatically generated by Maven