Package evo.search.io.entities
Class Project
- java.lang.Object
-
- evo.search.io.entities.Project
-
-
Constructor Summary
Constructors Constructor Description Project()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)List<Configuration>getConfigurations()List of projects registered configurations.StringgetName()Projects name.PathgetPath()Projects file system path.StringgetVersion()Projects version number for file compatibility.inthashCode()Projectparse(org.dom4j.Element projectSettings)Parse aElementand return the entity.org.dom4j.Elementserialize()Serialize the entity into aElement.voidsetConfigurations(List<Configuration> configurations)List of projects registered configurations.voidsetName(String name)Projects name.voidsetPath(Path path)Projects file system path.voidsetVersion(String version)Projects version number for file compatibility.StringtoString()
-
-
-
Method Detail
-
serialize
public org.dom4j.Element serialize()
Description copied from interface:XmlEntitySerialize the entity into aElement.
-
parse
public Project parse(org.dom4j.Element projectSettings)
Description copied from interface:XmlEntityParse aElementand return the entity.
-
getVersion
public String getVersion()
Projects version number for file compatibility.
-
getPath
public Path getPath()
Projects file system path.
-
getName
public String getName()
Projects name.
-
getConfigurations
public List<Configuration> getConfigurations()
List of projects registered configurations.
-
setVersion
public void setVersion(String version)
Projects version number for file compatibility.
-
setPath
public void setPath(Path path)
Projects file system path.
-
setName
public void setName(String name)
Projects name.
-
setConfigurations
public void setConfigurations(List<Configuration> configurations)
List of projects registered configurations.
-
canEqual
protected boolean canEqual(Object other)
-
-