CN111736828A - System configuration interface generation method and system applied to detection software - Google Patents
System configuration interface generation method and system applied to detection software Download PDFInfo
- Publication number
- CN111736828A CN111736828A CN202010543641.7A CN202010543641A CN111736828A CN 111736828 A CN111736828 A CN 111736828A CN 202010543641 A CN202010543641 A CN 202010543641A CN 111736828 A CN111736828 A CN 111736828A
- Authority
- CN
- China
- Prior art keywords
- parameter
- system configuration
- configuration interface
- configuration file
- generating
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Pending
Links
- 238000000034 method Methods 0.000 title claims abstract description 32
- 238000012545 processing Methods 0.000 claims description 6
- 238000004590 computer program Methods 0.000 claims description 4
- 230000006870 function Effects 0.000 claims description 3
- 238000001514 detection method Methods 0.000 description 6
- 238000012986 modification Methods 0.000 description 6
- 230000004048 modification Effects 0.000 description 6
- 230000000694 effects Effects 0.000 description 4
- 239000003086 colorant Substances 0.000 description 2
- 238000004891 communication Methods 0.000 description 2
- 238000010586 diagram Methods 0.000 description 2
- 230000006872 improvement Effects 0.000 description 2
- 238000012423 maintenance Methods 0.000 description 2
- 230000009286 beneficial effect Effects 0.000 description 1
- 239000003795 chemical substances by application Substances 0.000 description 1
- 230000008878 coupling Effects 0.000 description 1
- 238000010168 coupling process Methods 0.000 description 1
- 238000005859 coupling reaction Methods 0.000 description 1
- 230000007547 defect Effects 0.000 description 1
- 238000013461 design Methods 0.000 description 1
- 230000003993 interaction Effects 0.000 description 1
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/30—Creation or generation of source code
- G06F8/38—Creation or generation of source code for implementing user interfaces
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/30—Creation or generation of source code
- G06F8/34—Graphical or visual programming
Landscapes
- Engineering & Computer Science (AREA)
- Software Systems (AREA)
- General Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Human Computer Interaction (AREA)
- Stored Programmes (AREA)
Abstract
The invention discloses a system configuration interface generation method and system applied to detection software. The method comprises the following steps: s1, reading a configuration file, wherein the configuration file comprises a parameter name, a default parameter value and a parameter range of a parameter to be configured; s2, analyzing the read configuration file, and selecting an editing control from a plurality of types of editing controls defined in advance according to the parameter range of the parameter to be configured; and S3, generating a system configuration interface according to the parameter name, the default parameter value, the parameter range and the selected editing control of the parameter to be configured. The invention can simply and efficiently carry out personalized customization of the control type.
Description
Technical Field
The invention belongs to the technical field of panel detection, and particularly relates to a system configuration interface generation method and system applied to detection software.
Background
In panel detection, upper-layer application software for control panel detection introduces system configuration parameters in order to adapt to different panel detection scenes, and different configuration parameters enable the upper-layer application software to show different functions or performances. The system configuration parameters are typically stored in a configuration file. When the upper application software is started, the configuration parameters of the system are loaded by reading the configuration file, so that the functional modules in the software are initialized. The system configuration parameters of the upper application software can be modified, and the software can be applied to different panel detection scenes by modifying the system configuration parameters. There are generally two ways to modify system configuration parameters of software: one way is to modify the configuration file of the software directly, but this way requires that the modified system configuration be validated after the software is restarted; the other is modification through interface interaction of a system configuration parameter interface of software, and the mode can also be immediately effective without restarting.
It is common to employ a system configuration interface to modify configuration parameters of software. The system configuration parameter loading and modifying flow is as shown in figure 1. However, in a fixed system configuration interface, the number, style and layout of the controls in the interface are fixed, as shown in fig. 2. This method is not good for the expansibility of software, if the requirement is expanded in the maintenance stage of software, and the system configuration parameters need to be newly added in the software, then the corresponding controls need to be correspondingly added in the system configuration parameter interface, the interface layout also needs to be correspondingly modified, and the codes need to be modified in a relatively large scale, which is not good for the convenience of code modification and the maintainability of the software.
At present, a method for generating a dynamic interface appears, for example, an edit box of a certain parameter is required to be generated into a drop-down box form, the edit box is implemented by an if statement in a code, and if a new parameter is added, the if statement can only be continuously added in the code, so that the code is only more and more complex, and the problem of individually customizing the control type cannot be simply and efficiently processed.
Disclosure of Invention
Aiming at least one defect or improvement requirement in the prior art, the invention provides a system configuration interface generation method and a system applied to detection software, wherein an editing control is selected according to the parameter range of a parameter to be configured, and personalized customization of the control type can be simply and efficiently carried out.
To achieve the above object, according to a first aspect of the present invention, there is provided a system configuration interface generating method applied to detection software, including:
s1, reading a configuration file, wherein the configuration file comprises a parameter name, a default parameter value and a parameter range of a parameter to be configured;
s2, analyzing the read configuration file, and selecting an editing control from a plurality of types of editing controls defined in advance according to the parameter range of the parameter to be configured;
and S3, generating a system configuration interface according to the parameter name, the default parameter value, the parameter range and the selected editing control of the parameter to be configured.
Preferably, the method for generating the system configuration interface further comprises the steps of: receiving an input parameter value of a user in an editing control of a system configuration interface, replacing a default parameter value with the input parameter value, and re-initializing a module corresponding to the input parameter value in the system configuration interface.
Preferably, the method for generating the system configuration interface further comprises the steps of: after adding or modifying the parameters to be configured in the configuration file, the steps S1 to S3 are performed.
Preferably, the predefined multiple types of edit controls include: any combination of an IP address edit box, a drop-down box, an integer edit box, a decimal edit box, or a text edit box, the selecting of an edit control is specifically:
if the parameter range of the parameter to be configured is IP, selecting an IP address edit box;
if the parameter range of the parameter to be configured is a plurality of self-defined fields, selecting a drop-down box;
if the parameter range of the parameter to be configured is an integer, selecting an integer edit box;
if the parameter range of the parameter to be configured is a decimal, selecting a decimal edit box;
and if the parameter range of the parameter to be configured is blank, selecting a common text edit box.
Preferably, in step S1, each configuration file includes a plurality of parameters to be configured, and in step S2, an editing control is selected for each parameter to be configured.
Preferably, in step S1, a plurality of configuration files are read, where each configuration file corresponds to a function module of the system configuration.
Preferably, the configuration file is in a Json format.
According to a second aspect of the present invention, there is provided a system configuration interface generating system applied to test software, comprising:
the reading module is used for reading a configuration file, and the configuration file comprises a parameter name, a default parameter value and a parameter range of a parameter to be configured;
the analysis module is used for analyzing the read configuration file and selecting an editing control from a plurality of types of predefined editing controls according to the parameter range of the parameter to be configured;
and the generating module is used for generating a system configuration interface according to the parameter name, the default parameter value, the parameter range and the selected editing control of the parameter to be configured.
According to a third aspect of the present invention, there is provided detection software comprising the system configuration interface generation system applied to the detection software described above.
According to a fourth aspect of the invention, an electronic device is provided, characterized in that it comprises at least one processing unit, and at least one memory unit, wherein said memory unit stores a computer program that, when executed by said processing unit, causes said processing unit to perform the steps of any of the above-mentioned methods.
In general, compared with the prior art, the invention has the following beneficial effects: the control type can be customized simply and efficiently; from the view of software architecture, the coupling between the functional module and the UI interface is reduced, and great convenience is brought to the software maintenance period; in the software maintenance stage, when the requirement of the system configuration parameters changes, the system configuration interface does not need to be modified, the modified code amount is very small, and the maintenance cost of software is greatly reduced; various editing spaces, such as IP spaces, meeting the requirements are designed according to the system configuration requirements in the field of panel detection; in addition, the format of the configuration file is defined, and the method has the characteristics of simplicity and high efficiency.
Drawings
FIG. 1 is a flow chart of a prior art system configuration interface generation method;
FIG. 2 is a schematic diagram of a prior art system configuration interface;
FIG. 3 is a flow chart of a system configuration interface generation method according to an embodiment of the present invention;
fig. 4 and 5 are schematic diagrams of system configuration interfaces according to embodiments of the present invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the present invention more apparent, the present invention is described in further detail below with reference to the accompanying drawings and embodiments. It should be understood that the specific embodiments described herein are merely illustrative of the invention and are not intended to limit the invention. In addition, the technical features involved in the embodiments of the present invention described below may be combined with each other as long as they do not conflict with each other.
The system configuration interface generating method applied to the detection software of the embodiment of the invention, as shown in fig. 3, includes steps S1 to S3.
S1, reading a configuration file, wherein the configuration file comprises the parameter name, the default parameter value and the parameter range of the parameter to be configured.
In the existing system configuration file, only the parameter name and default parameter value of the parameter to be configured are included. In the embodiment of the invention, the parameter range of the parameter to be configured is also included in addition to the parameter name and the default parameter value of the parameter to be configured, so that the editing space can be selected according to the parameter range, and the personalized customization of the interface is realized.
For example, assuming that the interface color of the system configuration needs to be customized, the configuration file includes a parameter name "interface color" of the parameter to be configured, a default parameter value of the configuration file is set to be "green", a parameter range of the interface color "is several fields" green, red, and white ", and the finally generated system configuration interface is default to be green. And provides a selectable item of 'green, red and white', and the user can select the required interface color from the three colors and modify the interface color.
For another example, assuming that the IP address of the system configuration needs to be customized, the configuration file includes a parameter name "startip" of the parameter to be configured, a default parameter value of the parameter is defined as "192.168.10.1", and a parameter range of the parameter is set as "IP".
Preferably, the configuration file is in a Json format, and the Json format has the advantages of being concise and efficient.
And S2, analyzing the read configuration file, acquiring the parameter range of the parameter to be configured, and selecting an editing control from multiple types of editing controls defined in advance according to the parameter range of the parameter to be configured.
Multiple types of edit controls can be predefined and stored. The multiple types of edit controls can be any combination of an IP address edit box, a drop-down box, an integer edit box, a decimal edit box, or a text edit box. The edit control can be packaged program code.
Selecting an editing control according to the parameter range of the parameter to be configured specifically comprises: if the parameter range of the parameter to be configured is IP, selecting an IP address edit box; if the parameter range of the parameter to be configured is a plurality of self-defined fields, such as the parameter range of the interface color for example, selecting a drop-down box; if the parameter range of the parameter to be configured is an integer, selecting an integer edit box; if the parameter range of the parameter to be configured is a decimal, selecting a decimal edit box; and if the parameter range of the parameter to be configured is blank, selecting a common text edit box. The IP address edit box is an edit control which is not available in the UI library and is separately developed for the invention.
Preferably, in step S1, each configuration file includes a plurality of parameters to be configured, for example, two configuration parameters, that is, an interface color and an IP address, are included at the same time, and an edit control is selected according to each parameter to be configured, that is, a drop-down box is selected for the interface color, and an IP address edit box is selected for the IP address.
Preferably, in step S1, a plurality of configuration files are read, each configuration file corresponding to a functional module of the system configuration, such as "PG communication agent", "log plug-in", etc. in fig. 4 and 5. And respectively reading the configuration files corresponding to the functional modules, selecting an editing control for each parameter to be configured in each configuration file, and finally integrating to generate a system configuration interface.
And S3, generating a system configuration interface according to the parameter name of the parameter to be configured, the default parameter value and the selected editing control.
Fig. 4 and 5 show examples of the final system configuration interface, in which editing controls used for parameter names and parameter values in the system configuration interface are not designed to be fixed at the software development stage as in the past, but are generated dynamically when software is started. The interface design is more concise and efficient than that in the prior art.
In one embodiment, the method for generating the system configuration interface further includes step S4: and receiving an input parameter value of a user in an editing control of a system configuration interface, replacing a default parameter value with the input parameter value, after the user clicks and saves, replacing the default parameter value with the input parameter value by the system, and re-initializing a module corresponding to the parameter. The user can modify the system configuration parameter value in the editing control of the system configuration interface, for example, select other colors in the drop-down box of the interface color, and click to save, the corresponding module will be reinitialized, the modified parameter will take effect immediately, and the interface color will be changed to the selected color.
In one embodiment, the method for generating the system configuration interface further includes step S5: after adding or modifying the parameters to be configured in the configuration file, steps S1 to S3 are performed. In the software maintenance phase, when the software requirement changes and a new system configuration parameter is required to be added, the parameter name, the default parameter value and the parameter range of the parameter to be configured are directly added in the configuration file without modifying the system configuration interface, and the steps S1 to S3 are re-executed. When the default parameter value or parameter range of the system configuration parameter needs to be modified, the default parameter value and parameter range can also be directly modified in the configuration file.
In this way, when the system configuration requirement is newly added or modified, the required system configuration interface can be regenerated only by modifying the configuration file and restarting the software without modifying other codes.
The system configuration interface generation system applied to the detection software of the embodiment of the invention comprises the following components:
the reading module is used for reading a configuration file, and the configuration file comprises a parameter name, a default parameter value and a parameter range of a parameter to be configured;
the analysis module is used for analyzing the read configuration file and selecting an editing control from a plurality of types of predefined editing controls according to the parameter range of the parameter to be configured;
and the generating module is used for generating a system configuration interface according to the parameter name of the parameter to be configured, the default parameter value and the selected editing control.
In one embodiment, the system configuration interface generation system further includes a modification user modification module, which is configured to receive an input parameter value of a user in an edit control of the system configuration interface, replace a default parameter value with the input parameter value, and reinitialize a module corresponding to the parameter after the user clicks and saves the input parameter value.
In one embodiment, the system configuration interface generating system further includes a system modification module, configured to execute steps S1 to S3 after adding or modifying the parameter to be configured in the configuration file.
The working principle and technical effect of the system configuration interface generation system are similar to those of the system configuration interface generation method, and are not described herein again.
The detection software provided by the embodiment of the invention comprises the system configuration interface generation system applied to the detection software.
The working principle and technical effect of the detection software are similar to the system configuration interface generation method, and are not described herein again. Optionally, the detection software of the embodiment of the present application may be panel detection software, which may generate a software system configuration interface by using the system configuration interface generation method.
The embodiment of the present invention further provides an electronic device, which includes at least one processor and at least one memory, where the memory stores a computer program, and when the computer program is executed by the processor, the processor is enabled to execute the steps of any one of the above embodiments of the system configuration interface generating method. The implementation principle and technical effect of the electronic device are similar to those of the method, and are not described herein again. In this embodiment, the types of the processor and the memory are not particularly limited, for example: the processor may be a microprocessor, digital information processor, on-chip programmable logic system, or the like; the memory may be volatile memory, non-volatile memory, a combination thereof, or the like. The electronic device may also communicate with one or more external devices (e.g., keyboard, pointing terminal, display, etc.), with one or more terminals that enable a user to interact with the electronic device, and/or with any terminals (e.g., network card, modem, etc.) that enable the electronic device to communicate with one or more other computing terminals. Such communication may be through an input/output (I/O) interface. Also, the electronic device may communicate with one or more networks (e.g., a Local Area Network (LAN), a Wide Area Network (WAN), and/or a public Network, such as the internet) via the Network adapter.
It must be noted that in any of the above embodiments, the methods are not necessarily executed in order of sequence number, and as long as it cannot be assumed from the execution logic that they are necessarily executed in a certain order, it means that they can be executed in any other possible order.
It will be understood by those skilled in the art that the foregoing is only a preferred embodiment of the present invention, and is not intended to limit the invention, and that any modification, equivalent replacement, or improvement made within the spirit and principle of the present invention should be included in the scope of the present invention.
Claims (10)
1. The system configuration interface generation method applied to the detection software is characterized by comprising the following steps:
s1, reading a configuration file, wherein the configuration file comprises a parameter name, a default parameter value and a parameter range of a parameter to be configured;
s2, analyzing the read configuration file, and selecting an editing control from a plurality of types of editing controls defined in advance according to the parameter range of the parameter to be configured;
and S3, generating a system configuration interface according to the parameter name, the default parameter value, the parameter range and the selected editing control of the parameter to be configured.
2. The method for generating a system configuration interface applied to test software according to claim 1, comprising the steps of: receiving an input parameter value of a user in an editing control of a system configuration interface, replacing a default parameter value with the input parameter value, and re-initializing a module corresponding to the input parameter value in the system configuration interface.
3. The method for generating a system configuration interface applied to test software according to claim 1, comprising the steps of: after adding or modifying the parameters to be configured in the configuration file, the steps S1 to S3 are performed.
4. The method for generating a system configuration interface applied to detection software according to claim 1, 2 or 3, wherein the predefined multiple types of editing controls comprise: any combination of an IP address edit box, a drop-down box, an integer edit box, a decimal edit box, or a text edit box, the selecting of an edit control is specifically:
if the parameter range of the parameter to be configured is IP, selecting an IP address edit box;
if the parameter range of the parameter to be configured is a plurality of self-defined fields, selecting a drop-down box;
if the parameter range of the parameter to be configured is an integer, selecting an integer edit box;
if the parameter range of the parameter to be configured is a decimal, selecting a decimal edit box;
and if the parameter range of the parameter to be configured is blank, selecting a common text edit box.
5. The method as claimed in claim 1, 2 or 3, wherein in step S1, each configuration file includes a plurality of parameters to be configured, and in step S2, an edit control is selected for each parameter to be configured.
6. The method for generating a system configuration interface applied to test software according to claim 1, 2 or 3, wherein in step S1, a plurality of configuration files are read, each configuration file corresponding to a function module of the system configuration.
7. The method for generating the system configuration interface applied to the detection software as claimed in claim 1, 2 or 3, wherein the configuration file is in a Json format.
8. The system configuration interface generation system applied to the detection software is characterized by comprising the following components:
the reading module is used for reading a configuration file, and the configuration file comprises a parameter name, a default parameter value and a parameter range of a parameter to be configured;
the analysis module is used for analyzing the read configuration file and selecting an editing control from a plurality of types of predefined editing controls according to the parameter range of the parameter to be configured;
and the generating module is used for generating a system configuration interface according to the parameter name, the default parameter value, the parameter range and the selected editing control of the parameter to be configured.
9. An inspection software, comprising the system configuration interface generating system according to claim 8 applied to the inspection software.
10. An electronic device, comprising at least one processing unit and at least one memory unit, wherein the memory unit stores a computer program that, when executed by the processing unit, causes the processing unit to perform the steps of the method according to any one of claims 1 to 7.
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN202010543641.7A CN111736828A (en) | 2020-06-15 | 2020-06-15 | System configuration interface generation method and system applied to detection software |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN202010543641.7A CN111736828A (en) | 2020-06-15 | 2020-06-15 | System configuration interface generation method and system applied to detection software |
Publications (1)
Publication Number | Publication Date |
---|---|
CN111736828A true CN111736828A (en) | 2020-10-02 |
Family
ID=72649337
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
CN202010543641.7A Pending CN111736828A (en) | 2020-06-15 | 2020-06-15 | System configuration interface generation method and system applied to detection software |
Country Status (1)
Country | Link |
---|---|
CN (1) | CN111736828A (en) |
Cited By (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN114117011A (en) * | 2021-11-29 | 2022-03-01 | 武汉联影智融医疗科技有限公司 | Development method, device and system of lower computer simulator and storage medium |
Citations (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN102122245A (en) * | 2011-02-21 | 2011-07-13 | 北京沃泰丰通信技术有限公司 | Method and system for generating configuration item setting interface |
US20140289738A1 (en) * | 2009-08-27 | 2014-09-25 | Adobe Systems Incorporated | Systems and Methods for Dynamic Configuration of Client-Side Development Environments Through Use of Application Servers |
CN104793372A (en) * | 2015-05-12 | 2015-07-22 | 武汉精测电子技术股份有限公司 | Defect grade judgment method for liquid crystal modules of different production lines |
CN107450931A (en) * | 2017-08-15 | 2017-12-08 | 竞技世界(北京)网络技术有限公司 | Visualizing editing method and device based on INI configuration files |
CN110377510A (en) * | 2019-07-02 | 2019-10-25 | 武汉精立电子技术有限公司 | The control device and system of mould group detection device based on embedded system |
-
2020
- 2020-06-15 CN CN202010543641.7A patent/CN111736828A/en active Pending
Patent Citations (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20140289738A1 (en) * | 2009-08-27 | 2014-09-25 | Adobe Systems Incorporated | Systems and Methods for Dynamic Configuration of Client-Side Development Environments Through Use of Application Servers |
CN102122245A (en) * | 2011-02-21 | 2011-07-13 | 北京沃泰丰通信技术有限公司 | Method and system for generating configuration item setting interface |
CN104793372A (en) * | 2015-05-12 | 2015-07-22 | 武汉精测电子技术股份有限公司 | Defect grade judgment method for liquid crystal modules of different production lines |
CN107450931A (en) * | 2017-08-15 | 2017-12-08 | 竞技世界(北京)网络技术有限公司 | Visualizing editing method and device based on INI configuration files |
CN110377510A (en) * | 2019-07-02 | 2019-10-25 | 武汉精立电子技术有限公司 | The control device and system of mould group detection device based on embedded system |
Non-Patent Citations (1)
Title |
---|
雷丽萍等: "一种可通用的参数编辑软件设计及实现", 工业控制计算机, no. 12 * |
Cited By (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN114117011A (en) * | 2021-11-29 | 2022-03-01 | 武汉联影智融医疗科技有限公司 | Development method, device and system of lower computer simulator and storage medium |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
CN110764791B (en) | Channel adaptation method and device for applet and electronic equipment | |
US10698662B2 (en) | System providing automatic source code generation for personalization and parameterization of user modules | |
US8793635B1 (en) | Techniques for generating microcontroller configuration information | |
US6995765B2 (en) | System, method, and computer program product for optimization of a scene graph | |
CN112988153A (en) | Data processing method and framework based on micro front end | |
CN112199093B (en) | Resource checking method, device, equipment and computer readable storage medium | |
CN108279882B (en) | Framework generation method, device, equipment and computer readable medium | |
CN113971110A (en) | Interface testing method, device, equipment and computer readable storage medium | |
CN115268861B (en) | Introduction method, system, equipment and storage medium of custom component | |
US6941558B2 (en) | System and method for automatically generating an object-oriented class wrapper | |
JP2006276953A (en) | Screen definition data difference extraction method, device and program | |
CN111736828A (en) | System configuration interface generation method and system applied to detection software | |
CN111078319A (en) | Configuration data management method, device, storage medium and computer readable medium | |
CN113505054B (en) | Network data static test system and test method for unmanned aerial vehicle control station | |
CN114661375A (en) | Application integration method and device | |
CN104063231A (en) | Test resource rapid access method based on HIT-TENA | |
CN111488144A (en) | Data processing method and equipment | |
CN116450238A (en) | Vue interface rendering method and device, storage medium and electronic equipment | |
CN113641594B (en) | Cross-terminal automatic testing method and related device | |
CN111399827B (en) | Descriptive object code automatic generation method for sensor data processing | |
CN112486378A (en) | Graph generation method, device, terminal and storage medium | |
CN113485740B (en) | One-key automatic packaging method, device, equipment and medium | |
GB2362485A (en) | Computer system that defines navigation of a software application | |
CN116360779B (en) | Method for constructing micro front end base based on qiankun in Vue CLI application | |
CN116186816B (en) | Rotary machine parameter display method, storage medium and electronic device |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
PB01 | Publication | ||
PB01 | Publication | ||
SE01 | Entry into force of request for substantive examination | ||
SE01 | Entry into force of request for substantive examination |