A friend got me a stack overflow mug and its amazing - but one thing has always troubled me.
Is the code written in a real world language? The code seems like it could be improved slightly.
if (owner.isCoding() && mug.isEmpty()){
mug.fill('coffee');
}

It appears to me that isCoding and isEmpty are methods but could possibly be properties on an object to save checking the conditions each time.
Also wouldn't it be safer for the fill method on mug to expect a parameter with a type other than string.
'coffee'wouldn't compile in Java. – Bill the Lizard♦ Jul 5 '12 at 13:10'coffee'would be extracted into an Enum (if the language supports it)? I always at those "magical strings", as they are the same for me as "magical numbers"... – M. Night Demonbobby Jul 5 '12 at 13:14