import java.util.*; class b { String fileName; int line; b(){} b(String fileName, int line) { this.fileName = fileName; this.line = line; } public String getFileName() { return fileName; } public void setFileName(String fileName) { t...