All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dmg.pmml.HasMixedContent Maven / Gradle / Ivy

There is a newer version: 1.6.5
Show newest version
/*
 * Copyright (c) 2018 Villu Ruusmann
 */
package org.dmg.pmml;

import java.util.List;

public interface HasMixedContent> {

	boolean hasContent();

	List getContent();

	E addContent(Object... objects);
}