Package jline.lang
Class Model
-
- All Implemented Interfaces:
-
java.io.Serializable
public class Model implements Serializable
Class representing a model supported by the library
-
-
Method Summary
Modifier and Type Method Description StringgetName()Gets the name of this model. voidsetName(String setName)Sets the name of this model. StringgetVersion()Gets the LINE version associated with this model. voidsetVersion(String version)Sets the LINE version for this model. -
-
Constructor Detail
-
Model
Model(String modelName)
Creates a new model with the specified name.- Parameters:
modelName- the name to assign to this model
-
-
Method Detail
-
setName
void setName(String setName)
Sets the name of this model.
- Parameters:
setName- the new name for this model
-
getVersion
String getVersion()
Gets the LINE version associated with this model.
- Returns:
the LINE version string
-
setVersion
void setVersion(String version)
Sets the LINE version for this model.
- Parameters:
version- the LINE version string
-
-
-
-