Introduction
Here is the source code for Main.java
Source
//package com.java2s;
import java.lang.reflect.*;
public class Main {
private static boolean isFieldsEqual(Field one, Field two) {
return one.getName().equals(two.getName()) && one.getType().equals(two);
}
}