I will assume that you have not put these files into a package with a line like this:
package mypackage.myclasses;
1)
If you have not put them into packages, AND the Mass.class file is in the same folder as your other class, you do not need to have an import statement for this class to be found.
2)
If you did put it in a package AND the Mass.class file is in the same package, then again, you do not need an import statement.
3)
If you have put it in a package AND the Mass.class in is another folder, then you will need an import statement declaring the entire package name with the class. So iusing he example above, you would have:
import mypackage.myclasses.Mass;
You would also need to put the folder what mypackage is in on the classpath so Java could find the mypackage folder.
If you want to have an import statement when 1) or 2) is true, you could have this:
import Mass
but it is totally unnecessary to do so.
Oh, there is one other posibility. If the Mass.class file is not in the same folder as your class file, then you would need to put the folder where the Mass.class file is on the classpath. If it is in a package, you would need to import mypackage.myclasses.Mass; statement.
Hope that helps.