comparison 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
comparison
equal deleted inserted replaced
16:8400a7db1330 17:3741247de37a
1 /*
2 * Copyright (c) 2014. Ohio Department of Education. - All Rights Reserved.
3 * Unauthorized copying of this file, in any medium, is strictly prohibited.
4 * Written by State Software Development Team (http://ssdt.oecn.k12.oh.us/)
5 */
6
7 package org.ssdt_ohio.gradle.doc.tools
8
9 import org.codehaus.groovy.groovydoc.GroovyClassDoc
10
11 /**
12 * Created by smith on 12/31/2014.
13 */
14 class UserDocHelper {
15
16
17 UserClassDocProxy wrap(GroovyClassDoc classDoc) {
18 new UserClassDocProxy().wrap(classDoc)
19 }
20
21 }