Here you can find the source of classFileNameWithTypeAndExt(String className, String type, String ext)
public static String classFileNameWithTypeAndExt(String className, String type, String ext)
//package com.java2s; //License from project: Apache License public class Main { public static String classFileNameWithTypeAndExt(String className, String type, String ext) { return className + type + "." + ext; }/*from w w w. j a va 2s .c om*/ }