1 package no.sesat.mojo.modes;
2
3 /**
4 *
5 *
6 */
7 public class ConfigAbstract {
8 protected String doc;
9 protected String name;
10
11 /**
12 * @return true if it has documentation.
13 */
14 public boolean hasDoc() {
15 return (doc != null && !doc.trim().isEmpty());
16 }
17 }