com.reprezen.genflow.api.zenmodel.ZenModelExtractOutputItem Maven / Gradle / Ivy
/*******************************************************************************
* Copyright © 2013, 2016 Modelsolv, Inc.
* All Rights Reserved.
*
* NOTICE: All information contained herein is, and remains the property
* of ModelSolv, Inc. See the file license.html in the root directory of
* this project for further information.
*******************************************************************************/
package com.reprezen.genflow.api.zenmodel;
import org.eclipse.emf.ecore.EObject;
import com.reprezen.genflow.api.GenerationException;
import com.reprezen.genflow.api.outputitem.AbstractOutputItem;
import com.reprezen.genflow.api.util.TypeUtils;
import com.reprezen.rapidml.ZenModel;
public abstract class ZenModelExtractOutputItem
extends AbstractOutputItem {
@Override
public Class> getPrimaryType() throws GenerationException {
return ZenModel.class;
}
@Override
public Class> getItemType() throws GenerationException {
return TypeUtils.getTypeParamClass(getClass(), ZenModelExtractOutputItem.class, 0);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy