public interface

IUnitCreator

implements IEventSource
com.pnfsoftware.jeb.core.IUnitCreator
Known Indirect Subclasses

Class Overview

An interface implemented by all types that produce units. Currently, unit creators can be:

Summary

Public Methods
abstract IInput getInput()
Retrieve the optional input data.
abstract String getName()
Get the name of this object.
abstract IUnitCreator getParent()
Get the parent of the current object.
[Expand]
Inherited Methods
From interface com.pnfsoftware.jeb.util.events.IEventSource

Public Methods

public abstract IInput getInput ()

Retrieve the optional input data.

Returns
  • optional input

public abstract String getName ()

Get the name of this object.

public abstract IUnitCreator getParent ()

Get the parent of the current object. Only an IUnit can have a parent IUnitCreator; ie, if this object is not an IUnit, this method returns null (ie, when the current object is an IArtifact).