Package org.codehaus.xfire.gen.documentation

Examples of org.codehaus.xfire.gen.documentation.DocumentationConfigGen


        {
            return;
        }

        String srcFiles[] = null;
        DocumentationConfigGen gen = new DocumentationConfigGen();
        gen.setOutputFolder(outputDirectory);

        if (getConfigUrl() != null)
        {
            iterateServices();
            srcFiles = (String[]) services.toArray(new String[services.size()]);
        }
        else
        {
            if (filePath != null)
            {
                srcFiles = new String[] { filePath };
            }
            else
            {
                srcFiles = files;
            }
        }

       
        gen.setSrcFiles(srcFiles);
        gen.generate();
    }
View Full Code Here

TOP

Related Classes of org.codehaus.xfire.gen.documentation.DocumentationConfigGen

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.