maven/wsdl2java-maven-plugin/src/main/java/org/apache/axis/tools/maven/wsdl2java/JavaServiceIfaceWriterEx.java [33:40]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected String getFileName() {
        String clientOutputDirectory = ((EmitterEx)emitter).getClientOutputDirectory();
        if (clientOutputDirectory == null) {
            return super.getFileName();
        } else {
            return clientOutputDirectory + File.separator + packageName.replace('.', File.separatorChar) + File.separator + className + ".java";
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



maven/wsdl2java-maven-plugin/src/main/java/org/apache/axis/tools/maven/wsdl2java/JavaServiceImplWriterEx.java [33:40]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected String getFileName() {
        String clientOutputDirectory = ((EmitterEx)emitter).getClientOutputDirectory();
        if (clientOutputDirectory == null) {
            return super.getFileName();
        } else {
            return clientOutputDirectory + File.separator + packageName.replace('.', File.separatorChar) + File.separator + className + ".java";
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



maven/wsdl2java-maven-plugin/src/main/java/org/apache/axis/tools/maven/wsdl2java/JavaStubWriterEx.java [33:40]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected String getFileName() {
        String clientOutputDirectory = ((EmitterEx)emitter).getClientOutputDirectory();
        if (clientOutputDirectory == null) {
            return super.getFileName();
        } else {
            return clientOutputDirectory + File.separator + packageName.replace('.', File.separatorChar) + File.separator + className + ".java";
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



