253254255256257258259260261262263264265266267268
if ( parent != null ) { parentCleanupLevel = parent.getCleanupLevel(); } CleanupLevel annotation = description.getAnnotation( CleanupLevel.class ); if ( annotation == null ) { return parentCleanupLevel; } else { return annotation.value(); } }