backwards-compat for old invocations of getFullName().

git-svn-id: https://svn.apache.org/repos/asf/incubator/openjpa/trunk@453878 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Patrick Linskey 2006-10-07 09:30:33 +00:00
parent 54a3f15811
commit 34f6cb589e
1 changed files with 8 additions and 0 deletions

View File

@ -298,6 +298,14 @@ public class FieldMetaData
return _name;
}
/**
* The field name, qualified by the owning class.
* @deprecated Use getFullName(boolean) instead.
*/
public String getFullName() {
return getFullName(false);
}
/**
* The field name, qualified by the owning class and optionally the
* embedding owner's name (if any).