WO2012155844A1 - 自动移除代码的方法及装置 - Google Patents

自动移除代码的方法及装置 Download PDF

Info

Publication number
WO2012155844A1
WO2012155844A1 PCT/CN2012/075576 CN2012075576W WO2012155844A1 WO 2012155844 A1 WO2012155844 A1 WO 2012155844A1 CN 2012075576 W CN2012075576 W CN 2012075576W WO 2012155844 A1 WO2012155844 A1 WO 2012155844A1
Authority
WO
WIPO (PCT)
Prior art keywords
control
code
event
information
attribute information
Prior art date
Application number
PCT/CN2012/075576
Other languages
English (en)
French (fr)
Inventor
李超
Original Assignee
中兴通讯股份有限公司
Priority date (The priority date 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 date listed.)
Filing date
Publication date
Application filed by 中兴通讯股份有限公司 filed Critical 中兴通讯股份有限公司
Publication of WO2012155844A1 publication Critical patent/WO2012155844A1/zh

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/33Intelligent editors

Definitions

  • the present invention relates to the field of computer technologies, and in particular, to a method and an apparatus for automatically removing codes.
  • the event wizard module represents the management module that manages the trigger action of the control and its corresponding code.
  • the wizard can allow the user to select all events of the control, configure the processing function corresponding to the event, and generate the frame code of the event.
  • the event handler for the control can be generated quickly and easily by configuring the control's corresponding event and its corresponding handler in the event wizard.
  • VC tools based on the Microsoft Foundation Class Library (MFC) idea, can achieve good interface configuration and code generation, but the redundant code generated in the event wizard is not removed when the control is deleted by the interface.
  • VC tools can only use this development mode: The tool automatically generates the interface code, and the developer manually clears the redundant code of the event wizard.
  • SWT Standard Widget Toolkit
  • Eclipse IBM's Code Editing Tool
  • Google's Android mobile operating system, affiliated abstract data type (ADT) tool is also based on WYSIWYG thinking, enabling fast configuration of mobile interfaces, code generation and other functions.
  • the redundant code of the event wizard can only be manually cleared by the user. Summary of the invention
  • the embodiment of the invention provides a method and a device for automatically removing a code, so as to solve the problem that the control is deleted.
  • the embodiment of the invention provides a method for automatically removing a code, the method comprising:
  • the method further includes: storing the attribute information and the event code information of the created control and the corresponding relationship into the index table.
  • the attribute information of the control includes identifier information of the control, and the identifier information is unique;
  • the event code information of the control includes a name of all event functions of the control, and all event functions are in The location information of the code file and all event functions in the corresponding code file.
  • the attribute information of the control further includes a control type.
  • the location of the code corresponding to the control in the code file according to the event code information of the control, and deleting the code in the location includes: positioning according to event code information of the control Out the position of all the event functions of the control in the respective code files, and delete the code of the corresponding event function at the corresponding position.
  • An embodiment of the present invention further provides an apparatus for automatically removing a code, where the apparatus includes: an acquiring module, configured to: after detecting that the created control is deleted, acquiring the content from an index table according to attribute information of the control Event code information of the control, wherein the index table stores a correspondence between attribute information of the control and event code information of the control;
  • the device further includes:
  • the save module is set to save the attribute information and event code information of the created control and its corresponding relationship.
  • the attribute information of the control includes identifier information of the control, where the identifier information is unique;
  • the event code information of the control includes the names of all event functions of the control, the code files in which all event functions are located, and the location information of all event functions in the corresponding code files.
  • the attribute information of the control further includes a control type.
  • the removing module is configured to locate a location of all event functions of the control in a respective code file according to event code information of the control, and delete a code of a corresponding event function at the corresponding location.
  • the method and device for automatically removing the code according to the corresponding relationship between the attribute information of the deleted control and the event code information can automatically remove the code corresponding to the control when the control is deleted, thereby reducing the redundancy of the code.
  • FIG. 1 is a flow chart of an embodiment of a method for automatically removing code of the present invention
  • FIG. 2 is a schematic structural diagram of an index table according to an embodiment of the present invention.
  • FIG. 3 is a block diagram showing an embodiment of an apparatus for automatically removing codes according to the present invention.
  • the embodiment of the present invention establishes a correspondence between a control attribute and a control event code by providing a set of index tables.
  • the index table stores the added control identifier, the control type, the control event, and the event code information accordingly (including The name of the event function, the location letter in the code file Interest, etc.), when the control is deleted, the location information of the corresponding event code is found from the index table, and is removed from the corresponding code file.
  • FIG. 1 it is a flowchart of an embodiment of a method for automatically removing code according to the present invention, the process comprising:
  • a global index table is set up for storing the attribute information of the control and the event code information of the control, where the attribute information of the control includes the identification information of the control, and may also include information such as the type of the control; as shown in picture 2;
  • control's identity Because the control's identity (ID) is unique, it can be used as the primary key for the index table.
  • the event code information of the control first fills all the trigger events supported by the control, and the processing code information corresponding to each event is temporarily not filled, and the processing code information corresponding to the event is filled until the control is added.
  • the user drags a control from the window interface, visually drags a control to the window interface, and triggers the event of the control by clicking, double-clicking, dragging, etc., at this time, the user configures the interface through the event wizard to configure an event.
  • the processing function configures the file location information generated by the code.
  • the coordinate information of the control, the number of child controls, and the like are cleared from the control model information of the window itself;
  • the implementation mechanism of the multi-layer search of the index table is used, and according to the control ID and the previously established correspondence relationship, the type of the control can be quickly obtained (such as whether the control is a button type or an edit box type), and the same can also be obtained.
  • All trigger events of the control such as click events of the button control, double click events, The drag event and the processing function corresponding to these events, the code file where the function is located, the number of lines of the function, and other event code information; if the index table does not have the event code information corresponding to the control, the control can be directly deleted from the window. Subsequent actions are not triggered at this time.
  • the event code information found in the index table includes the function name, the parameter name, the parameter type, the code file in which the function is located, and the function line number. Based on the information, the redundant code of the control is removed.
  • the above method for automatically removing the code can automatically remove the code corresponding to the control when the control is deleted, thereby reducing the redundancy of the code. , has good implementability.
  • FIG. 3 it is a schematic structural diagram of an apparatus embodiment for automatically removing code according to the present invention.
  • the apparatus includes an acquisition module 31 and a removal module 32, wherein:
  • Obtaining a module configured to: after detecting that the created control is deleted, acquiring event code information of the control from the index table according to the attribute information of the control, where the index table stores the attribute of the control Correspondence between information and event code information of the control;
  • And removing the module configured to locate the location of the code corresponding to the control in the code file according to the event code information of the control acquired by the obtaining module, and delete the code at the location.
  • the device further includes: a saving module, configured to save attribute information and event code information of the created control and the corresponding relationship thereof.
  • the attribute information of the control may include the identifier information of the control, and the identifier information is unique; and the attribute information of the control may further include a control type.
  • the event code information of the control includes the names of all event functions of the control, the code files in which all event functions are located, and the location information of all event functions in the corresponding code files.
  • the removing module is configured to locate a location of all event functions of the control in a respective code file according to event code information of the control, and delete a code of a corresponding event function at the corresponding location.
  • the device for automatically removing the code can automatically remove the code corresponding to the control when the control is deleted, thereby reducing the redundancy of the code.
  • the method and device for automatically removing code described in the above technical solution can automatically remove the code corresponding to the control when the control is deleted according to the correspondence between the attribute information of the deleted control and the event code information, thereby reducing the code The redundancy of the code. Fixed that the control was deleted and the control was originally

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Description

自动移除代码的方法及装置
技术领域
本发明涉及计算机技术领域,尤其涉及一种自动移除代码的方法及装置。
背景技术
目前基于所见即所得的可设计工具(UI设计工具) 中, 其代码生成功能 都是通过事件向导模块配置该向导, 生成控件事件的框架代码。
事件向导模块表示的是管理控件的触发动作和其对应代码的管理模块, 该向导可以允许用户选择该控件的所有事件, 配置该事件对应的处理函数, 生成该事件的框架代码。
通过在事件向导中配置控件对应事件及其事件对应的处理函数, 可以简 便快捷地生成控件的事件处理函数。
然而绝大多数的 UI设计工具,可以快速正确地生成控件的事件及其处理 函数, 但是在当控件在窗口界面中删除时, 该控件原有的代码中无法从代码 文件中删除, 出现代码冗余。 这些冗余代码只能由程序员手动清除。 当可视 化界面中含有大量不同类型的控件时, 删除这些控件, 其代码冗余量非常大, 严重影响用户使用。
如微软的 VC工具, 基于微软基础类库(MFC )思想可以做到界面良好 的配置性和代码快速生成, 但是在事件向导中生成的冗余代码, 并没有根据 控件被界面删除时移除。 VC工具只能使用这种开发模式: 工具自动生成界面 代码,开发人员手动清除事件向导的冗余代码。 IBM的代码编辑工具( Eclipse ) 的标准窗口小部件工具箱 (SWT )插件, 同样可以可视化设计界面, 事件向 导中的冗余代码也是不能正确地移除。 谷歌(Google )发布的安卓(Android ) 手机操作系统, 附属的抽象数据类型 (ADT )工具, 也是基于所见即所得的 思想, 做到手机界面快速配置, 代码生成等功能。 而事件向导的冗余代码, 也是只能由用户手动清除。 发明内容
本发明实施例提供了一种自动移除代码的方法及装置, 以解决控件被删
本发明实施例提供了一种自动移除代码的方法, 该方法包括:
在检测到已创建的控件被删除后, 根据所述控件的属性信息从索引表中 获取所述控件的事件代码信息, 其中, 所述索引表中保存有所述控件的属性 信息和所述控件的事件代码信息的对应关系;
根据所述控件的事件代码信息定位出与所述控件对应的代码在代码文件 中的位置, 并删除所述位置上的代码。
可选地, 所述在检测到已创建的控件被删除之前, 所述方法还包括: 将所述已创建的控件的属性信息和事件代码信息及其对应关系存入所述 索引表中。
可选地, 所述控件的属性信息包括所述控件的标识信息, 所述标识信息 具有唯一性; 所述控件的事件代码信息包括所述控件的所有事件函数的名称、 所有事 件函数所处于的代码文件和所有事件函数在对应代码文件中的位置信息。
可选地, 所述控件的属性信息还包括控件类型。
可选地, 所述根据所述控件的事件代码信息定位出与所述控件对应的代 码在代码文件中的位置, 并删除所述位置上的代码, 包括: 根据所述控件的事件代码信息定位出所述控件的所有事件函数在各自代 码文件中的位置, 并删除对应位置上的对应事件函数的代码。
本发明实施例还提供了一种自动移除代码的装置, 该装置包括: 获取模块, 设置为在检测到已创建的控件被删除后, 根据所述控件的属 性信息从索引表中获取所述控件的事件代码信息, 其中, 所述索引表中保存 有所述控件的属性信息和所述控件的事件代码信息的对应关系;
移除模块, 设置为根据所述获取模块获取的所述控件的事件代码信息定 位出与所述控件对应的代码在代码文件中的位置,并删除所述位置上的代码。 可选地, 所述装置还包括:
保存模块, 设置为保存已创建的控件的属性信息和事件代码信息及其对 应关系。
可选地, 所述控件的属性信息包括所述控件的标识信息, 所述标识信息 具有唯一性;
所述控件的事件代码信息包括所述控件的所有事件函数的名称、 所有事 件函数所处于的代码文件和所有事件函数在对应代码文件中的位置信息。
可选地, 所述控件的属性信息还包括控件类型。
可选地, 所述移除模块, 是设置为根据所述控件的事件代码信息定位出 所述控件的所有事件函数在各自代码文件中的位置, 并删除对应位置上的对 应事件函数的代码。
上述自动移除代码的方法及装置, 根据被删除控件的属性信息和事件代 码信息的对应关系, 在该控件被删除时可以自动移除与该控件对应的代码, 从而减少了代码的冗余度。 附图概述
图 1是本发明自动移除代码的方法实施例的流程图;
图 2是本发明实施例所提供的索引表的结构示意图;
图 3是本发明自动移除代码的装置实施例的结构示意图。
本发明的较佳实施方式
为使本发明的目的、 技术方案和优点更加清楚明白, 下文中将结合附图 对本发明的实施例进行详细说明。 需要说明的是, 在不冲突的情况下, 本申 请中的实施例及实施例中的特征可以相互任意组合。
本发明实施例通过提供一套索引表建立控件属性和控件事件代码的对应 关系, 当增加某种控件时, 该索引表相应地存储增加的控件标识、 控件类型、 控件事件和事件代码信息 (包括该事件函数的名称, 在代码文件中的位置信 息等), 当该控件被删除时, 从索引表中查找到对应的事件代码的位置信息, 将其从对应的代码文件中移除。
如图 1所示, 是本发明自动移除代码的方法实施例的流程图, 该过程包 括:
S101、 建立控件事件索引表并进行初始化;
首先建立用于保存控件的属性信息和控件的事件代码信息的对应关系全 局索引表, 其中, 所述控件的属性信息包括所述控件的标识信息, 还可以包 括控件类型等信息; 索引表的结构如图 2所示;
由于控件的标识 (ID )具有唯一性, 可以作为该索引表的主键。 控件的 事件代码信息首先填充控件支持的所有触发事件, 每一种事件对应的处理代 码信息暂时不填充,事件对应的处理代码信息等到该种控件被添加时再填充。
S102、 在窗口界面增加控件, 并触发控件的事件操作;
用户通过拖曳方式, 从窗口界面, 可视化的拖曳某个控件至窗口界面, 并通过单击、 双击、 拖动等操作, 触发该控件的事件, 此时用户通过事件向 导配置界面, 配置某事件的处理函数, 配置代码生成的文件位置信息。
S 103、 控件事件索引表内增加控件的事件代码信息;
在窗口界面添加控件, 并通过事件向导配置控件的事件名称及其事件处 理函数后, 调用索引表的储存操作, 将该控件 ID、 控件类型、 控件事件、 事 件的代码信息存入索引表; 用户建立多个控件, 触发该控件的多种操作, 同 时生成了多处事件代码信息。
上述步骤 101-103为可选步骤;
S104、 在检测到已创建的控件被删除后, 根据所述控件的属性信息从索 引表中获取所述控件的事件代码信息;
在窗口界面中, 通过删除操作, 删除控件后, 从窗口本身的控件模型信 息中清除该控件的坐标信息、 子控件数量等信息;
本发明实施例釆用索引表多层查找的实现机制 ,根据控件 ID和之前建立 的对应关系,可快速获取控件的类型(如控件是按钮类型,还是编辑框类型), 同时也可获取到该控件所有的触发事件, 如按钮控件的单击事件、 双击事件、 拖动事件以及这些事件对应的处理函数、 函数所在的代码文件, 函数的行数 等事件代码信息; 如果索引表不存在控件对应的事件代码信息, 则直接从窗口中删除控件 即可。 此时也不会触发后续的操作。
S105、 根据所述控件的事件代码信息定位出与所述控件对应的代码在代 码文件中的位置, 并删除所述位置上的代码。
根据所述控件的事件代码信息定位出所述控件的所有事件函数在各自代 码文件中的位置, 并删除对应位置上的对应事件函数的代码。
可选, 从索引表中查找到的事件代码信息, 包含函数名称, 参数名称、 参数类型, 函数所处于的代码文件及函数行号等信息, 根据这些信息, 移除 该控件的冗余代码。
上述自动移除代码的方法, 4艮据被删除控件的属性信息和事件代码信息 的对应关系, 在该控件被删除时可以自动移除与该控件对应的代码, 从而减 少了代码的冗余度, 具有良好的可实施性。
如图 3所示, 是本发明自动移除代码的装置实施例的结构示意图, 该装 置包括获取模块 31和移除模块 32 , 其中:
获取模块, 设置为在检测到已创建的控件被删除后, 根据所述控件的属 性信息从索引表中获取所述控件的事件代码信息, 其中, 所述索引表中保存 有所述控件的属性信息和所述控件的事件代码信息的对应关系;
移除模块, 设置为根据所述获取模块获取的所述控件的事件代码信息定 位出与所述控件对应的代码在代码文件中的位置,并删除所述位置上的代码。
另外, 所述装置还包括: 保存模块, 设置为保存已创建的控件的属性信 息和事件代码信息及其对应关系。 其中, 所述控件的属性信息可以包括所述控件的标识信息, 所述标识信 息具有唯一性; 所述控件的属性信息还可以包括控件类型。 所述控件的事件 代码信息包括所述控件的所有事件函数的名称、 所有事件函数所处于的代码 文件和所有事件函数在对应代码文件中的位置信息等。 可选地, 所述移除模块, 是设置为根据所述控件的事件代码信息定位出 所述控件的所有事件函数在各自代码文件中的位置, 并删除对应位置上的对 应事件函数的代码。
上述自动移除代码的装置, 才艮据被删除控件的属性信息和事件代码信息 的对应关系, 在该控件被删除时可以自动移除与该控件对应的代码, 从而减 少了代码的冗余度。
本领域普通技术人员可以理解上述方法中的全部或部分步骤可通过程序 来指令相关硬件完成, 上述程序可以存储于计算机可读存储介质中, 如只读 存储器、 磁盘或光盘等。 可选地, 上述实施例的全部或部分步骤也可以使用 一个或多个集成电路来实现。 相应地, 上述实施例中的各模块 /单元可以釆用 硬件的形式实现, 也可以釆用软件功能模块的形式实现。 本发明实施例不限 制于任何特定形式的硬件和软件的结合。
以上实施例仅用以说明本发明的技术方案而非限制, 仅仅参照较佳实施 例对本发明进行了详细说明。 本领域的普通技术人员应当理解, 可以对本发 明实施例的技术方案进行修改或者等同替换, 而不脱离本发明技术方案的精 神和范围, 均应涵盖在本发明的权利要求范围当中。
工业实用性
上述技术方案所描述的自动移除代码的方法及装置, 根据被删除控件的 属性信息和事件代码信息的对应关系, 在该控件被删除时可以自动移除与该 控件对应的代码, 从而减少了代码的冗余度。 解决了控件被删除而该控件原

Claims

权 利 要 求 书
1、 一种自动移除代码的方法, 包括:
在检测到已创建的控件被删除后, 根据所述控件的属性信息从索引表中 获取所述控件的事件代码信息, 其中, 所述索引表中保存有所述控件的属性 信息和所述控件的事件代码信息的对应关系;
根据所述控件的事件代码信息定位出与所述控件对应的代码在代码文件 中的位置, 并删除所述位置上的代码。
2、 根据权利要求 1所述的方法, 其中:
所述在检测到已创建的控件被删除之前, 所述方法还包括:
将所述已创建的控件的属性信息和事件代码信息及其对应关系存入所述 索引表中。
3、 根据权利要求 1或 2所述的方法, 其中:
所述控件的属性信息包括所述控件的标识信息, 所述标识信息具有唯一 性;
所述控件的事件代码信息包括所述控件的所有事件函数的名称、 所述所 有事件函数所处于的代码文件和所述所有事件函数在在所处于的代码文件中 的位置信息。
4、 根据权利要求 3所述的方法, 其中:
所述控件的属性信息还包括控件类型。
5、 根据权利要求 3所述的方法, 其中:
所述根据所述控件的事件代码信息定位出与所述控件对应的代码在代码 文件中的位置, 并删除所述位置上的代码的步骤, 包括:
根据所述控件的事件代码信息定位出所述控件的所有事件函数在各自代 码文件中的位置, 并删除该位置上的对应事件函数的代码。
6、 一种自动移除代码的装置, 包括:
获取模块, 其设置为: 在检测到已创建的控件被删除后, 根据所述控件 的属性信息从索引表中获取所述控件的事件代码信息, 其中, 所述索引表中 保存有所述控件的属性信息和所述控件的事件代码信息的对应关系; 以及 移除模块, 其设置为: 根据所述获取模块获取的所述控件的事件代码信 息定位出与所述控件对应的代码在代码文件中的位置, 并删除所述位置上的 代码。
7、 根据权利要求 6所述的装置, 其还包括:
保存模块, 其设置为: 保存已创建的控件的属性信息和事件代码信息及 其对应关系。
8、 根据权利要求 6或 7所述的装置, 其中:
所述控件的属性信息包括所述控件的标识信息, 所述标识信息具有唯一 性;
所述控件的事件代码信息包括所述控件的所有事件函数的名称、 所述所 有事件函数所处于的代码文件和所述所有事件函数在在所处于的代码文件中 的位置信息。
9、 根据权利要求 8所述的装置, 其中:
所述控件的属性信息还包括控件类型。
10、 根据权利要求 8所述的装置, 其中:
所述移除模块是设置为: 根据所述控件的事件代码信息定位出所述控件 的所有事件函数在各自代码文件中的位置, 并删除该位置上的对应事件函数 的代码。
PCT/CN2012/075576 2011-12-09 2012-05-16 自动移除代码的方法及装置 WO2012155844A1 (zh)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN2011104091294A CN102520947A (zh) 2011-12-09 2011-12-09 自动移除代码的方法及装置
CN201110409129.4 2011-12-09

Publications (1)

Publication Number Publication Date
WO2012155844A1 true WO2012155844A1 (zh) 2012-11-22

Family

ID=46291889

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2012/075576 WO2012155844A1 (zh) 2011-12-09 2012-05-16 自动移除代码的方法及装置

Country Status (2)

Country Link
CN (1) CN102520947A (zh)
WO (1) WO2012155844A1 (zh)

Families Citing this family (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103353836B (zh) * 2013-04-01 2016-12-28 深圳市东微智能科技股份有限公司 一种可编程的可复用控件的功能实现方法
CN105095107B (zh) * 2014-05-04 2019-07-16 腾讯科技(深圳)有限公司 清理缓存数据的方法及装置
CN105511934B (zh) * 2015-12-08 2018-11-13 贵阳朗玛信息技术股份有限公司 应用程序开发中的资源处理方法及装置
CN105975260B (zh) * 2016-04-28 2019-05-03 广州华多网络科技有限公司 一种文件生成方法及装置
CN106569799B (zh) * 2016-10-17 2020-08-11 搜游网络科技(北京)有限公司 程序处理方法及其设备

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101661399A (zh) * 2008-08-25 2010-03-03 通用汽车环球科技运作公司 模块化软件移除方法
CN102043655A (zh) * 2011-01-04 2011-05-04 奇智软件(北京)有限公司 一种强力卸载软件的方法及系统

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR100564613B1 (ko) * 2004-02-25 2006-03-29 삼성전자주식회사 플래시 메모리 및 광 드라이브의 펌웨어 모듈 동적 로딩동작 방법

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101661399A (zh) * 2008-08-25 2010-03-03 通用汽车环球科技运作公司 模块化软件移除方法
CN102043655A (zh) * 2011-01-04 2011-05-04 奇智软件(北京)有限公司 一种强力卸载软件的方法及系统

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
GUAN, XUDONG ET AL.: "Dynamic Creation and Clearance of Controls in Delphi", PC WORLD, vol. 09, 15 September 1997 (1997-09-15), pages 75 - 76 *

Also Published As

Publication number Publication date
CN102520947A (zh) 2012-06-27

Similar Documents

Publication Publication Date Title
US11048688B2 (en) Deleting configuration items in a configuration management database
US9460184B2 (en) Application of a differential dataset to a data store using sequential change sets
US11281846B2 (en) Inheritance of rules across hierarchical levels
JP5971420B2 (ja) 状態復元プログラム、装置、及び支援方法
US7437686B1 (en) Systems, methods and computer program products for graphical user interface presentation to implement filtering of a large unbounded hierarchy to avoid repetitive navigation
JP5871583B2 (ja) 文書管理装置及びその制御方法、並びにプログラム
TW201600980A (zh) 管理具有時間線的日曆事件
WO2013159447A1 (zh) 一种对桌面图标进行批量管理的方法及数字移动设备
US8805777B2 (en) Data record collapse and split functionality
US8839257B2 (en) Superseding of recovery actions based on aggregation of requests for automated sequencing and cancellation
WO2012155844A1 (zh) 自动移除代码的方法及装置
CN102541561B (zh) 配置式软件开发方法及装置
US9940066B2 (en) Snapshot management in hierarchical storage infrastructure
JP2008217651A (ja) 設計支援装置、設計支援方法、およびプログラム
TWI493368B (zh) 自動產生查詢歷程
CN112559127B (zh) 虚拟机创建方法、装置、主机及存储介质
US20130263143A1 (en) Information processing method and system
US20060200482A1 (en) System, Method and Program Product for Setting and Managing Breakpoints in a Data Schema Mapping Editor
JP2017107265A (ja) テストシナリオ作成支援システム及びテストシナリオ作成支援方法
US20150212799A1 (en) Migration between model elements of different types in a modeling environment
CN109144948B (zh) 应用文件定位的方法、装置、电子设备和存储器
US20210294966A1 (en) Systems and methods for binding lookup controls
JP2010061200A (ja) 文書管理システム及び操作履歴表示方法
JP4635987B2 (ja) フローダイアグラム編集装置、フローダイアグラム編集方法、及びプログラム
CN117931096A (zh) 应用于边缘计算集群的服务器的信息提供方法及装置

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 12786308

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 12786308

Country of ref document: EP

Kind code of ref document: A1