annotate src/main/groovy/org/ssdt_ohio/gradle/doc/tools/UserDocHelper.groovy @ 17:3741247de37a

USASR-1307: add helper to resolve template classpath problem
author smith@nwoca.org
date Thu, 01 Jan 2015 00:01:02 +0000
parents
children
rev   line source
17
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
1 /*
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
2 * Copyright (c) 2014. Ohio Department of Education. - All Rights Reserved.
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
3 * Unauthorized copying of this file, in any medium, is strictly prohibited.
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
4 * Written by State Software Development Team (http://ssdt.oecn.k12.oh.us/)
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
5 */
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
6
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
7 package org.ssdt_ohio.gradle.doc.tools
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
8
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
9 import org.codehaus.groovy.groovydoc.GroovyClassDoc
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
10
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
11 /**
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
12 * Created by smith on 12/31/2014.
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
13 */
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
14 class UserDocHelper {
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
15
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
16
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
17 UserClassDocProxy wrap(GroovyClassDoc classDoc) {
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
18 new UserClassDocProxy().wrap(classDoc)
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
19 }
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
20
3741247de37a USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
diff changeset
21 }