private String computePath()

in partial-jnlp-ant-task/src/main/java/org/apache/easyant/tasks/JNLPTask.java [244:252]


    private String computePath(File currentFile, PathType type)
            throws Exception {
        switch (type) {
        case FLAT:
            return computeFlat(currentFile);
        default:
            return computeAutomatic(currentFile);
        }
    }