javac really preprocessing?
Everyone knows you can see API's java code unpacking src.zip.
So, imagine that you call internalMethod(var) in you application. And suppose that you see e.g. in src.zip:
public static void internalMethod(int var)
{
//The real implementation,whitout native modifiers
}
Does it mean javac internally preprocesses the code getting it changed as said in src.zip?
Or, by the other hand, javac directly compiles the code and it already knows the real implementation of every API's method?
I don't have any experiences with compilers. I'm sorry.
Anyone can help me, please?

