View Javadoc
1 package com.bonevich.erj.model; 2 3 /*** 4 * An interface that defines a specific type definition 5 * for an attribute - either a primitive data type 6 * or a domain. 7 * @see Domain 8 * @see DataType 9 * @author Jeffrey D. Bonevich <bonevich@telocity.com> 10 */ 11 public interface AttributeType 12 { 13 public String getName(); 14 } /* end interface AttributeType */

This page was automatically generated by Maven