EDOBE XDOM PMML Bedienungsanleitung Seite 46

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 98
  • Inhaltsverzeichnis
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 45
46
/**
* Empty constructor just uses the super method.
*/
public ThirdCopyEngineNode() {
}
/**
* Boilerplate for specifying this class provides the
* execute() method.
*/
public CNKProc procCreate() throws Exception {
CNKProcJavaTransform proc = new CNKProcJavaTransform();
proc.setExecObject(this);
return(proc);
}
/**
* Look at which columns will be copied and return their
* metadata.
*/
public XTMetaData calculateOutputMetaData(int outputNum){
if (outputNum > 0) {
return null;
}
XTMetaData inMD = getInputMetaData(0);
XTProps props = getNodeProperties();
Vector columns = props.getSubProperties(
COLUMNS_ATTRIBUTE_TAG);
if (columns == null || columns.size() == 0){
return null;
}
XTMetaData outMD = inMD.selectiveClone(columns);
return outMD;
}
Seitenansicht 45
1 2 ... 41 42 43 44 45 46 47 48 49 50 51 ... 97 98

Kommentare zu diesen Handbüchern

Keine Kommentare