Uses of Class
cz.zcu.fav.kiv.editor.beans.ConfigData

Packages that use ConfigData
cz.zcu.fav.kiv.editor.config   
cz.zcu.fav.kiv.editor.controller   
cz.zcu.fav.kiv.editor.graphics   
cz.zcu.fav.kiv.editor.graphics.intro   
cz.zcu.fav.kiv.editor.stylesheet   
cz.zcu.fav.kiv.editor.template   
 

Uses of ConfigData in cz.zcu.fav.kiv.editor.config
 

Methods in cz.zcu.fav.kiv.editor.config that return ConfigData
 ConfigData ConfigController.getData()
           
 

Methods in cz.zcu.fav.kiv.editor.config with parameters of type ConfigData
 java.util.Map<java.lang.String,Figure> ConfigParser.readConfig(ConfigData configData, AttributeGroup[] attributeGroupList)
          Parses the configuration file with layout of parameters and attribute-sets - config.xml.
 

Constructors in cz.zcu.fav.kiv.editor.config with parameters of type ConfigData
ParamController(ConfigData configData, CommonTypes types)
          Initializes a newly created ParamController.
 

Uses of ConfigData in cz.zcu.fav.kiv.editor.controller
 

Methods in cz.zcu.fav.kiv.editor.controller that return ConfigData
 ConfigData ProgressControl.getData()
          Returns editor data structure loaded from configuration files.
 

Methods in cz.zcu.fav.kiv.editor.controller with parameters of type ConfigData
static void MenuController.newFileDefaultItem(ConfigData configData, OpenFile openFile)
          Creates a new stylesheet file and sets values to the GUI editor element according to the default template.
static void MenuController.newFileEmptyItem(ConfigData configData, OpenFile openFile)
          Creates a new empty stylesheet file, sets default values to the GUI editor element.
static void MenuController.newFileStylesheetItem(ConfigData configData, OpenFile openFile, java.lang.String templateFile)
          Creates a new stylesheet file and sets values to the GUI editor element according to the user template.
static void MenuController.openFileItem(ConfigData configData, java.lang.String file, OpenFile openFile)
          Opens specified XSL stylesheet file.
static void MenuController.saveAsFileItem(ConfigData configData, java.lang.String saveFile, OpenFile openFile)
          Saves actually opened XSL stylesheet in the file with specified name.
static void MenuController.saveFileItem(ConfigData configData, OpenFile openFile)
          Saves changes of the actually opened XSL stylesheet file.
 

Uses of ConfigData in cz.zcu.fav.kiv.editor.graphics
 

Methods in cz.zcu.fav.kiv.editor.graphics that return ConfigData
 ConfigData MainFrame.getConfigData()
           
 

Methods in cz.zcu.fav.kiv.editor.graphics with parameters of type ConfigData
static MainFrame MainFrame.createFrame(ConfigData data)
          Creates the main application frame MainFrame with specified data.
 

Uses of ConfigData in cz.zcu.fav.kiv.editor.graphics.intro
 

Methods in cz.zcu.fav.kiv.editor.graphics.intro that return ConfigData
static ConfigData ProgressBar.getData()
           
 

Uses of ConfigData in cz.zcu.fav.kiv.editor.stylesheet
 

Methods in cz.zcu.fav.kiv.editor.stylesheet with parameters of type ConfigData
static void OpenFileHadler.parserParameterTag(org.w3c.dom.Element node, int line, ConfigData data)
          Parses node 'parameter' and its value in the input XSL file.
static Property OpenFileHadler.parserPropertyTag(org.w3c.dom.Element node, int line, ConfigData data)
          Parses node 'attribute-set' and its value in the input XSL file.
static org.w3c.dom.Document XslParser.readXsltFile(java.lang.String file, ConfigData configData)
          Opens and reads the input XSL file.
static void SaveFileHandler.saveStylesheet(org.w3c.dom.Document doc, ConfigData data)
          Saves changes of actually opened XSL stylesheet file.
static void XslParser.saveXsltFile(java.lang.String file, org.w3c.dom.Document document, ConfigData configData)
          Saves changes of actually opened XSL stylesheet file and saves the DOM structure to the XSL file.
 

Constructors in cz.zcu.fav.kiv.editor.stylesheet with parameters of type ConfigData
XsltFileHandler(ConfigData data)
           
 

Uses of ConfigData in cz.zcu.fav.kiv.editor.template
 

Methods in cz.zcu.fav.kiv.editor.template with parameters of type ConfigData
 void TemplateParser.readTemplate(ConfigData configData, java.lang.String templateFile)
          Parses the file with template.
 void TemplateController.readTemplate(ConfigData configData, java.lang.String templateFile)
          Reads a template defined by its path templateFile.
 

Constructors in cz.zcu.fav.kiv.editor.template with parameters of type ConfigData
TemplateXmlHandler(ConfigData configData, java.lang.String template)
          Initializes a newly created TemplateXmlHandler with ConfigData and template name templateFile.