* one, or null otherwise.
*
* @return the current entity or null if not of the required class
*/
private MutableTitled getCurrentTitled() {
MutableTitled current = null;
if (currentEntity instanceof MutableTitled) {
current = (MutableTitled) currentEntity;
}