Here you can find the source of fromInternalForm(String internalForm)
public static String fromInternalForm(String internalForm)
//package com.java2s; /**/*from ww w . j a v a2s .c o m*/ * BSD-style license; for more info see http://pmd.sourceforge.net/license.html */ public class Main { public static String fromInternalForm(String internalForm) { return internalForm.replace('/', '.'); } }