Class LoadXmlModelTask
- java.lang.Object
-
- org.apache.tools.ant.ProjectComponent
-
- org.apache.tools.ant.Task
-
- org.eclipse.epsilon.workflow.tasks.EpsilonTask
-
- org.eclipse.epsilon.workflow.tasks.AbstractLoadModelTask
-
- org.eclipse.epsilon.workflow.tasks.emf.LoadXmlModelTask
-
- All Implemented Interfaces:
Cloneable
public class LoadXmlModelTask extends AbstractLoadModelTask
-
-
Field Summary
Fields Modifier and Type Field Description protected String
aliases
protected boolean
cached
protected boolean
concurrent
protected boolean
expand
protected File
modelFile
protected boolean
read
protected boolean
store
protected File
xsdFile
-
Fields inherited from class org.eclipse.epsilon.workflow.tasks.AbstractLoadModelTask
name
-
Fields inherited from class org.eclipse.epsilon.workflow.tasks.EpsilonTask
failOnErrors, failOnWarnings, profile
-
-
Constructor Summary
Constructors Constructor Description LoadXmlModelTask()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAliases()
File
getModelFile()
File
getXsdFile()
boolean
isCached()
boolean
isConcurrent()
boolean
isExpand()
boolean
isRead()
boolean
isStore()
IModel
loadModel()
void
setAliases(String aliases)
void
setCached(boolean cached)
void
setConcurrent(boolean concurrent)
void
setExpand(boolean expand)
void
setModelFile(File modelFile)
void
setRead(boolean read)
void
setStore(boolean store)
void
setXsdFile(File xsdFile)
-
Methods inherited from class org.eclipse.epsilon.workflow.tasks.AbstractLoadModelTask
executeImpl, getName, setName
-
Methods inherited from class org.eclipse.epsilon.workflow.tasks.EpsilonTask
execute, fail, getActiveTransactions, getBaseDir, getExtendedProperties, getModelRepository, getProjectRepository, getProjectStackFrame, isFailOnErrors, isFailOnWarnings, isProfile, setFailOnErrors, setFailOnWarnings, setProfile, setProjectRepository, usesSharedModelRepository, warn
-
Methods inherited from class org.apache.tools.ant.Task
bindToOwner, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType
-
-
-
-
Method Detail
-
loadModel
public IModel loadModel() throws org.apache.tools.ant.BuildException
- Specified by:
loadModel
in classAbstractLoadModelTask
- Throws:
org.apache.tools.ant.BuildException
-
getAliases
public String getAliases()
-
setAliases
public void setAliases(String aliases)
-
getModelFile
public File getModelFile()
-
setModelFile
public void setModelFile(File modelFile)
-
getXsdFile
public File getXsdFile()
-
setXsdFile
public void setXsdFile(File xsdFile)
-
isRead
public boolean isRead()
-
setRead
public void setRead(boolean read)
-
isStore
public boolean isStore()
-
setStore
public void setStore(boolean store)
-
isExpand
public boolean isExpand()
-
setExpand
public void setExpand(boolean expand)
-
setCached
public void setCached(boolean cached)
-
isCached
public boolean isCached()
-
isConcurrent
public boolean isConcurrent()
- Returns:
- Since:
- 1.6
-
setConcurrent
public void setConcurrent(boolean concurrent)
- Parameters:
concurrent
-- Since:
- 1.6
-
-