EDOBE XDOM PMML Instrukcja Użytkownika Strona 29

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 98
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 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
Przeglądanie stron 28
1 2 ... 24 25 26 27 28 29 30 31 32 33 34 ... 97 98

Komentarze do niniejszej Instrukcji

Brak uwag