Implemented BasicValue#accept method
This commit is contained in:
parent
115234e70e
commit
8042cc2cdb
|
@ -777,6 +777,11 @@ public class BasicValue extends SimpleValue implements JdbcTypeDescriptorIndicat
|
||||||
return temporalPrecision;
|
return temporalPrecision;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Object accept(ValueVisitor visitor) {
|
||||||
|
return visitor.accept(this);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Resolved form of {@link BasicValue} as part of interpreting the
|
* Resolved form of {@link BasicValue} as part of interpreting the
|
||||||
* boot-time model into the run-time model
|
* boot-time model into the run-time model
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
||||||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
||||||
*/
|
*/
|
||||||
package org.hibernate.test.mapping;
|
package org.hibernate.orm.test.mapping;
|
||||||
|
|
||||||
import org.hibernate.boot.MetadataSources;
|
import org.hibernate.boot.MetadataSources;
|
||||||
import org.hibernate.boot.registry.StandardServiceRegistry;
|
import org.hibernate.boot.registry.StandardServiceRegistry;
|
Loading…
Reference in New Issue