Package xdoclet

Examples of xdoclet.ConfigParameter


     * @doc.tag                     type="block"
     */
    public void forAllModules(String template) throws XDocletException
    {
        List cps = getDocletContext().getActiveSubTask().getConfigParams();
        ConfigParameter cp = (ConfigParameter) cps.get(0);
        File moduleParentDir = new File(cp.getValue());
        File[] moduleDirs = moduleParentDir.listFiles();

        for (int i = 0; i < moduleDirs.length; i++) {
            if (isModule(moduleDirs[i])) {
                currentModule = moduleDirs[i].getName();
View Full Code Here

TOP

Related Classes of xdoclet.ConfigParameter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.