If an object reference is passed to a method, is it possible to make the object \"Read Only\" to the method?
private boolean isExecuteWriteQueue = false; public boolean isWriting(){ final boolean b = isExecuteWriteQueue; return b; }