org.dmg.pmml.HasExtensions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pmml-model-gwt Show documentation
Show all versions of pmml-model-gwt Show documentation
JPMML GWT compatible class model
/*
* Copyright (c) 2013 KNIME.com AG, Zurich, Switzerland
*/
package org.dmg.pmml;
import java.util.List;
/**
*
* A marker interface for PMML elements that specify {@link Extension} child elements.
*
*/
public interface HasExtensions> {
boolean hasExtensions();
List getExtensions();
E addExtensions(Extension... extensions);
}