There actually
is no "standard Fractions class" -- you won't find a class by that name in the
Java APIs. Perhaps your instructor supplied it, or a book?
In any case, you need an instance of the "Fractions" class to be able to call this method. "Calling it in a static context" means calling it just using the class name, as you're doing in your code. Only methods marked "static" can be called this way. That means at some point you have to do something like
Fractions f = new Fractions();
and then later when you call the method, it must look like
f.compare(A[minIndex],A[smallestIndex])
Does that make sense now?