Class GenerationTargetToStdout
- java.lang.Object
-
- org.hibernate.tool.schema.internal.exec.GenerationTargetToStdout
-
- All Implemented Interfaces:
GenerationTarget
public class GenerationTargetToStdout extends Object implements GenerationTarget
AGenerationTarget
that writed DDL toSystem.out
.
-
-
Constructor Summary
Constructors Constructor Description GenerationTargetToStdout()
GenerationTargetToStdout(String delimiter)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(String command)
Accept a commandvoid
prepare()
Prepare for accepting actionsvoid
release()
Release this target, giving it a change to release its resources.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.tool.schema.internal.exec.GenerationTarget
beforeScript
-
-
-
-
Constructor Detail
-
GenerationTargetToStdout
public GenerationTargetToStdout(String delimiter)
-
GenerationTargetToStdout
public GenerationTargetToStdout()
-
-
Method Detail
-
prepare
public void prepare()
Description copied from interface:GenerationTarget
Prepare for accepting actions- Specified by:
prepare
in interfaceGenerationTarget
-
accept
public void accept(String command)
Description copied from interface:GenerationTarget
Accept a command- Specified by:
accept
in interfaceGenerationTarget
- Parameters:
command
- The command
-
release
public void release()
Description copied from interface:GenerationTarget
Release this target, giving it a change to release its resources.- Specified by:
release
in interfaceGenerationTarget
-
-