com.cerner.ccl.parser.data.Described Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdoc-parser Show documentation
Show all versions of cdoc-parser Show documentation
A parser utility for parsing CDoc CCL documentation
The newest version!
package com.cerner.ccl.parser.data;
/**
* Definition of an object that is described.
*
* @author Joshua Hyde
*
*/
public interface Described {
/**
* Get the description.
*
* @return The description.
*/
String getDescription();
}