mirror of https://github.com/apache/openjpa.git
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:
parent
54a3f15811
commit
34f6cb589e
|
@ -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).
|
||||
|
|
Loading…
Reference in New Issue