Interface ObjectCreator<T>

Type Parameters:
T - Type of the created Object

public interface ObjectCreator<T>
A Creator for any kind of object. Which object shall be created and which conditions may be of interrest must be implemented in concrete classes.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    Creates and returns a new Object.
  • Method Details

    • createObject

      T createObject()
      Creates and returns a new Object.
      Returns:
      Object