EDOBE XDOM PMML Bedienungsanleitung Seite 29

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 98
  • Inhaltsverzeichnis
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 28
29
/**
* Very simple implementation of engine node copying each
* input to the corresponding output. Assumes the same
* number of inputs as outputs. To keep this short, no
* error checking is performed.
*/
public class FirstCopyEngineNode extends EngineNode
implements CNKProcJavaTransformExec {
/**
* Empty constructor just uses the super method.
*/
public FirstCopyEngineNode() {
}
/**
* Boilerplate for specifying this class provides the
* execute() method.
*/
public CNKProc procCreate() throws Exception {
CNKProcJavaTransform proc = new CNKProcJavaTransform();
proc.setExecObject(this);
return(proc);
}
/**
* Passes the input column name/type information as the
* output information.
*/
public XTMetaData calculateOutputMetaData(int outputNum)
{
return (XTMetaData)getInputMetaData(outputNum).clone();
}
/**
* Copies the two inputs to the two outputs when the node
Seitenansicht 28
1 2 ... 24 25 26 27 28 29 30 31 32 33 34 ... 97 98

Kommentare zu diesen Handbüchern

Keine Kommentare