if ( file.endsWith( ".class" ) ) {
file = file.substring( 0, file.length() - 6 );
}
else if ( file.endsWith( ".java" ) ) {
file = file.substring( 0, file.length() - 5 );
}
else {
return null;
}
file = file.replace( '\\", '." );
file = file.replace( '/", '." );
return file;