Posted By:
Christopher_Koenigsberg
Posted On:
Saturday, October 2, 2004 08:28 AM
interface OneOfOurs {
}
// ....
class ThisObject implements OneOfOurs {
}
// ....
ThisObject thisObject = new ThisObject();
// ...
if (thisObject instanceof OneOfOurs) {
//do something;
} else {
logger.error("Not one of ours.");
}