OPENJPA-1085: Add toString() to PCStates

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@826953 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Pinaki Poddar 2009-10-20 05:02:19 +00:00
parent 6d6645b7ed
commit afb95a595f
1 changed files with 5 additions and 0 deletions

View File

@ -27,6 +27,7 @@ package org.apache.openjpa.kernel;
* *
* @author Steve Kim * @author Steve Kim
*/ */
@SuppressWarnings("serial")
class TLoadedState class TLoadedState
extends PCState { extends PCState {
@ -37,4 +38,8 @@ class TLoadedState
PCState release(StateManagerImpl context) { PCState release(StateManagerImpl context) {
return TRANSIENT; return TRANSIENT;
} }
public String toString() {
return "Transient-Loaded";
}
} }