RefClass instanceof method

This commit is contained in:
Clisprail
2014-08-07 19:40:38 +02:00
parent 5154c0d9cd
commit 947d311b7a
@@ -118,6 +118,15 @@ public class RefClass extends RefModifiers {
} }
return fields.toArray(new RefField[fields.size()]); return fields.toArray(new RefField[fields.size()]);
} }
/**
* Determines if a object is an instance of this class
* @param object the object you want to check
* @return <code>true</code> if the object is an instance of this class; <code>false</code> otherwise
*/
public boolean instanceOf(Object object) {
return this.clazz.isInstance(object);
}
/** /**
* Gets field by field name * Gets field by field name