Package cz.vutbr.fit.layout.provider
Class OperatorApplicationProvider
- java.lang.Object
-
- cz.vutbr.fit.layout.impl.BaseService
-
- cz.vutbr.fit.layout.impl.BaseParametrizedOperation
-
- cz.vutbr.fit.layout.impl.BaseArtifactService
-
- cz.vutbr.fit.layout.provider.OperatorApplicationProvider
-
- All Implemented Interfaces:
ArtifactService,ParametrizedOperation,Service
public class OperatorApplicationProvider extends BaseArtifactService
An artifact provider that consumes an area tree, applies a list of operators and produces a new area tree.- Author:
- burgetr
-
-
Constructor Summary
Constructors Constructor Description OperatorApplicationProvider()OperatorApplicationProvider(String operatorList)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.eclipse.rdf4j.model.IRIgetConsumes()The artifact type consumed.StringgetDescription()Obtains a longer description of the service.StringgetId()Obtains a unique ID of the serviceStringgetName()Obtains a descriptive name of the service that may be presented to the user.StringgetOperatorList()List<AreaTreeOperator>getOperators()org.eclipse.rdf4j.model.IRIgetProduces()The artifact type produced.Artifactprocess(Artifact input)Consumes an input artifact and produces an output artifact.voidsetOperatorList(String operatorList)voidsetOperators(List<AreaTreeOperator> operators)-
Methods inherited from class cz.vutbr.fit.layout.impl.BaseArtifactService
getCategory, toString
-
Methods inherited from class cz.vutbr.fit.layout.impl.BaseParametrizedOperation
defineParams, getParam, getParams, getParamString, setParam
-
Methods inherited from class cz.vutbr.fit.layout.impl.BaseService
getServiceManager, setServiceManager
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface cz.vutbr.fit.layout.api.Service
setServiceManager
-
-
-
-
Constructor Detail
-
OperatorApplicationProvider
public OperatorApplicationProvider()
-
OperatorApplicationProvider
public OperatorApplicationProvider(String operatorList)
-
-
Method Detail
-
getOperatorList
public String getOperatorList()
-
setOperatorList
public void setOperatorList(String operatorList)
-
getOperators
public List<AreaTreeOperator> getOperators()
-
setOperators
public void setOperators(List<AreaTreeOperator> operators)
-
getId
public String getId()
Description copied from interface:ServiceObtains a unique ID of the service
-
getName
public String getName()
Description copied from interface:ServiceObtains a descriptive name of the service that may be presented to the user.- Returns:
- the operator name
-
getDescription
public String getDescription()
Description copied from interface:ServiceObtains a longer description of the service.- Returns:
- the description
-
getConsumes
public org.eclipse.rdf4j.model.IRI getConsumes()
Description copied from interface:ArtifactServiceThe artifact type consumed.- Returns:
- the artifact type IRI or
nullwhen nothing is consumed (source only).
-
getProduces
public org.eclipse.rdf4j.model.IRI getProduces()
Description copied from interface:ArtifactServiceThe artifact type produced.- Returns:
- the artifact type IRI or
nullwhen nothing is produced (consumer only).
-
process
public Artifact process(Artifact input) throws ServiceException
Description copied from interface:ArtifactServiceConsumes an input artifact and produces an output artifact.- Parameters:
input- The input artifact ornullwhen nothing is consumed- Returns:
- the output artifact
nullwhen nothing is produced - Throws:
ServiceException
-
-