Package org.pentaho.di.base
Class BaseHopMeta<T>
- java.lang.Object
-
- org.pentaho.di.base.BaseHopMeta<T>
-
- All Implemented Interfaces:
Cloneable,org.pentaho.di.core.xml.XMLInterface
- Direct Known Subclasses:
JobHopMeta,TransHopMeta
public abstract class BaseHopMeta<T> extends Object implements Cloneable, org.pentaho.di.core.xml.XMLInterface
This class defines a base hop from one job entry copy to another, or from one step to another.- Author:
- Alexander Buloichik
-
-
Constructor Summary
Constructors Constructor Description BaseHopMeta()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectclone()org.pentaho.di.repository.ObjectIdgetObjectId()booleanhasChanged()booleanisEnabled()booleanisErrorHop()voidsetChanged()voidsetChanged(boolean ch)voidsetEnabled()voidsetEnabled(boolean en)voidsetErrorHop(boolean errorHop)voidsetObjectId(org.pentaho.di.repository.ObjectId id)
-
-
-
Field Detail
-
XML_TAG
public static final String XML_TAG
- See Also:
- Constant Field Values
-
split
public boolean split
-
from
protected T from
-
to
protected T to
-
enabled
protected boolean enabled
-
changed
protected boolean changed
-
id
protected org.pentaho.di.repository.ObjectId id
-
-
Method Detail
-
getObjectId
public org.pentaho.di.repository.ObjectId getObjectId()
-
setObjectId
public void setObjectId(org.pentaho.di.repository.ObjectId id)
-
setChanged
public void setChanged()
-
setChanged
public void setChanged(boolean ch)
-
hasChanged
public boolean hasChanged()
-
setEnabled
public void setEnabled()
-
isEnabled
public boolean isEnabled()
-
setEnabled
public void setEnabled(boolean en)
-
isErrorHop
public boolean isErrorHop()
-
setErrorHop
public void setErrorHop(boolean errorHop)
-
-