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

edu.cmu.tetradapp.model.GraphSettable Maven / Gradle / Ivy

The newest version!
package edu.cmu.tetradapp.model;

import edu.cmu.tetrad.graph.Graph;
import edu.cmu.tetrad.util.Parameters;

/**
 * 

GraphSettable interface.

* * @author josephramsey * @version $Id: $Id */ public interface GraphSettable extends GraphSource { /** *

getParameters.

* * @return a {@link edu.cmu.tetrad.util.Parameters} object */ Parameters getParameters(); /** *

setGraph.

* * @param newValue a {@link edu.cmu.tetrad.graph.Graph} object */ void setGraph(Graph newValue); /** *

getNumModels.

* * @return a int */ int getNumModels(); /** *

getModelSourceName.

* * @return a {@link java.lang.String} object */ String getModelSourceName(); /** *

getModelIndex.

* * @return a int */ int getModelIndex(); /** *

setModelIndex.

* * @param index a int */ void setModelIndex(int index); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy