Uses of Class
de.xima.fc.entities.ClientFormThemeFile
-
Packages that use ClientFormThemeFile Package Description de.xima.fc.dao.impl de.xima.fc.dao.interfaces de.xima.fc.entities Package für Datenbankentitätende.xima.fc.gui.model.form_theme de.xima.fc.logic.form_theme -
-
Uses of ClientFormThemeFile in de.xima.fc.dao.impl
Methods in de.xima.fc.dao.impl that return types with arguments of type ClientFormThemeFile Modifier and Type Method Description List<ClientFormThemeFile>
ClientFormThemeDao. getFilesByFormTheme(IEntityContext ec, ClientFormTheme clientFormTheme)
-
Uses of ClientFormThemeFile in de.xima.fc.dao.interfaces
Methods in de.xima.fc.dao.interfaces that return types with arguments of type ClientFormThemeFile Modifier and Type Method Description List<ClientFormThemeFile>
IClientFormThemeDao. getFilesByFormTheme(IEntityContext ec, ClientFormTheme clientFormTheme)
Reads all files contained in the given form theme. -
Uses of ClientFormThemeFile in de.xima.fc.entities
Methods in de.xima.fc.entities that return ClientFormThemeFile Modifier and Type Method Description ClientFormThemeFile
ClientFormTheme. addOrReplaceFile(String resourceContext, String fileName, byte[] data, IUser user)
Adds a file with the given context and file name to this theme.ClientFormThemeFile
ClientFormThemeFile. cloneBasics()
Creates a copy of this file, with only the basic metadata fields copied.ClientFormThemeFile
ClientFormTheme. getFile(String resourceContext, String fileName)
Gets a file with the given file name from the given context, if such a file exists.ClientFormThemeFile
ClientFormThemeFileData. getFileEntity()
Methods in de.xima.fc.entities that return types with arguments of type ClientFormThemeFile Modifier and Type Method Description List<ClientFormThemeFile>
ClientFormTheme. getFiles()
Gets the list of files that are used by this form theme.Map<ClientFormThemeFile.ClientFormThemeFileId,ClientFormThemeFile>
ClientFormTheme. getFilesMapFlat()
Creates a new, modifiable map that represents a snapshot of the currentfiles
.Map<String,Map<String,ClientFormThemeFile>>
ClientFormTheme. getFilesMapNested()
Creates a new, modifiable map that represents a snapshot of the currentfiles
.Methods in de.xima.fc.entities with parameters of type ClientFormThemeFile Modifier and Type Method Description static ClientFormThemeFile.ClientFormThemeFileId
ClientFormThemeFile.ClientFormThemeFileId. ofFile(ClientFormThemeFile file)
Creates a new ID for aClientFormThemeFile
that uniquely identifies that file in a particularClientFormTheme
.void
ClientFormThemeFileData. setFileEntity(ClientFormThemeFile fileEntity)
Method parameters in de.xima.fc.entities with type arguments of type ClientFormThemeFile Modifier and Type Method Description void
ClientFormTheme. setFiles(List<ClientFormThemeFile> files)
Sets the list of files that are used by this form theme. -
Uses of ClientFormThemeFile in de.xima.fc.gui.model.form_theme
Methods in de.xima.fc.gui.model.form_theme that return ClientFormThemeFile Modifier and Type Method Description protected ClientFormThemeFile
FormThemeFileViewPersistenceAdapter. newEntity()
Methods in de.xima.fc.gui.model.form_theme with parameters of type ClientFormThemeFile Modifier and Type Method Description protected void
FormThemeFileViewPersistenceAdapter. fillEmptyEntity(IEntityContext ec, ClientFormThemeFile entity, FormThemeFileView view)
static FormThemeFileEntry
FormThemeFileEntry. ofClientFormThemeFile(ClientFormThemeFile file)
Creates a file key for the given client form theme file.Constructors in de.xima.fc.gui.model.form_theme with parameters of type ClientFormThemeFile Constructor Description FormThemeFileView(ClientFormThemeFile file)
Creates a new view for aClientFormThemeFile
based on the data of the given file. -
Uses of ClientFormThemeFile in de.xima.fc.logic.form_theme
Method parameters in de.xima.fc.logic.form_theme with type arguments of type ClientFormThemeFile Modifier and Type Method Description static boolean
FormThemeUiHelper. checkHasNonStandardCssFiles(List<ClientFormThemeFile> files)
Checks if any of the given files is a non-standard CSS file.static String
FormThemeUiHelper. getClientFormThemeFileAsPlainText(IEntityContext ec, List<ClientFormThemeFile> files, EFormThemeResourceContext resourceContext, String fileName)
Gets the text content of the given client form theme file.
-