Package de.xima.fc.gui.model.form_theme
Class FormThemeView
- java.lang.Object
-
- de.xima.fc.gui.model.form_theme.FormThemeView
-
- All Implemented Interfaces:
Serializable
public final class FormThemeView extends Object implements Serializable
POJO view of aClientFormTheme
, without relations to other entities.- Since:
- 8.3.0
- Author:
- XIMA MEDIA GmbHZ
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FormThemeView(ClientFormTheme theme)
Creates a new POJO view of aClientFormTheme
with the data from the given client form theme.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
Gets the client form theme'sdescription
.Long
getId()
Gets the client form theme'sID
.String
getName()
Gets the client form theme'sname
.FormThemeReference
getParentFormTheme()
Gets the client form theme'sparent form theme
.UUID
getUuid()
Gets the client form theme'sUUID
.void
setDescription(String description)
Sets the client form theme'sdescription
.void
setName(String name)
Sets the client form theme'sname
.void
setParentFormTheme(FormThemeReference parentFormTheme)
Sets the client form theme'sparent form theme
.
-
-
-
Constructor Detail
-
FormThemeView
public FormThemeView(ClientFormTheme theme)
Creates a new POJO view of aClientFormTheme
with the data from the given client form theme.- Parameters:
theme
- The client form theme.
-
-
Method Detail
-
getDescription
public String getDescription()
Gets the client form theme'sdescription
.- Returns:
- The description.
-
setDescription
public void setDescription(String description)
Sets the client form theme'sdescription
.- Parameters:
description
- The description.
-
setName
public void setName(String name)
Sets the client form theme'sname
.- Parameters:
name
- The name.
-
getParentFormTheme
public FormThemeReference getParentFormTheme()
Gets the client form theme'sparent form theme
.- Returns:
- The parent form theme.
-
setParentFormTheme
public void setParentFormTheme(FormThemeReference parentFormTheme)
Sets the client form theme'sparent form theme
.- Parameters:
parentFormTheme
- The parent form theme.
-
-