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