KR100976545B1 - 인터페이스를 이용한 요구사항 추적/관리 시스템 - Google Patents
인터페이스를 이용한 요구사항 추적/관리 시스템 Download PDFInfo
- Publication number
- KR100976545B1 KR100976545B1 KR1020070133179A KR20070133179A KR100976545B1 KR 100976545 B1 KR100976545 B1 KR 100976545B1 KR 1020070133179 A KR1020070133179 A KR 1020070133179A KR 20070133179 A KR20070133179 A KR 20070133179A KR 100976545 B1 KR100976545 B1 KR 100976545B1
- Authority
- KR
- South Korea
- Prior art keywords
- interface
- requirements
- design model
- source code
- tracking
- Prior art date
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F11/00—Error detection; Error correction; Monitoring
- G06F11/30—Monitoring
- G06F11/3089—Monitoring arrangements determined by the means or processing involved in sensing the monitored data, e.g. interfaces, connectors, sensors, probes, agents
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F11/00—Error detection; Error correction; Monitoring
- G06F11/30—Monitoring
- G06F11/34—Recording or statistical evaluation of computer activity, e.g. of down time, of input/output operation ; Recording or statistical evaluation of user activity, e.g. usability assessment
- G06F11/3466—Performance evaluation by tracing or monitoring
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F11/00—Error detection; Error correction; Monitoring
- G06F11/36—Preventing errors by testing or debugging software
- G06F11/362—Software debugging
- G06F11/3624—Software debugging by performing operations on the source code, e.g. via a compiler
-
- 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
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/44—Arrangements for executing specific programs
- G06F9/448—Execution paradigms, e.g. implementations of programming paradigms
- G06F9/4488—Object-oriented
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- General Engineering & Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Software Systems (AREA)
- Quality & Reliability (AREA)
- Computer Hardware Design (AREA)
- Stored Programmes (AREA)
Abstract
Description
package com.requirement; import com.요구사항; /** * 주문관리 요구사항 */ public interface 주문관리_요구사항 extends 요구사항 { } |
package com.usecase; import com.유스케이스; import com.requirement.주문관리_요구사항; /** * 주문유스케이스 인터페이스 */ public interface 주문_유스케이스 extends 유스케이스, 주문관리_요구사항 { } |
package com.component; import com.usecase.주문상세조회_유스케이스; import com.Component; import com.usecase.주문_유스케이스; import com.usecase.주문취소_유스케이스; /** * 주문컴포넌트 플레그 인터페이스 */ public interface 주문컴포넌트 extends 주문상세조회_유스케이스, Component, 주문_유스케이스, 주문취소_유스케이스 { } |
package com.component.svc; import com.component.주문컴포넌트; /** * 주문서비스 */ public interface OrderSvc extends 주문컴포넌트 { } |
package com.component.svc; /** * 주문서비스 구현 클래스 */ public class OrderSvcImpl implements OrderSvc { public OrderSvcImpl(){ } public void finalize() throws Throwable { } } |
Claims (7)
- 삭제
- 삭제
- 삭제
- 삭제
- 삭제
- 인터페이스를 이용한 요구사항을 추적 및 관리 시스템에 있어서,객체지향 방법에 의한 소프트웨어 개발 시스템의 설계 모델 단계의 요구사항을 작성하는 설계모델 작성기;상기 설계모델 작성기로부터 작성된 요구사항에 대응하는 소스 코딩 단계에서 요구사항에 대한 인터페이스를 정의하고, 정의된 인터페이스에 따라 구체적 요구사항 정의 및 대응되는 객체 생성에 의한 소스코드를 코딩하는 소스코드 작성기; 및상기 소스코드 작성기로부터 소스코드 코딩후, 인터페이스를 이용하여 설계 모델 단계의 구체적인 요구사항을 추적하거나 코딩된 소스코드를 문서화하고, 문서를 통하여 인터페이스를 이용한 설계 모델 단계의 구체적인 요구사항을 추적하며, 추적된 요구사항에 대한 확인 및 변경하는 소스코드 편집기;를 포함하는 인터페이스를 이용한 요구사항 추적/관리 시스템.
- 제 6항에 있어서,상기 설계모델 작성기는, UML 설계 모델을 이용하여 상기 요구사항에 대한 유스케이스를 작성하는 UML 설계모델 작성기; 및CBD 설계 모델을 이용하여 상기 요구사항에 대한 컴포넌트 정의 및 생성하는 CBD 설계모델 작성기를 더 포함하되,상기 소스코드 작성기는, 상기 유스케이스에 대한 상위 인터페이스를 정의하고, 상위 인터페이스에 대응되도록 구체적인 유스케이스의 하위 인터페이스를 정의하며,상기 컴포넌트에 대한 상위 인터페이스를 정의하고, 상위 인터페이스에 대응되도록 구체적인 컴포넌트의 하위 인터페이스를 정의하는 것을 특징으로 하는 인터페이스를 이용한 요구사항 추적/관리 시스템.
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
KR1020070133179A KR100976545B1 (ko) | 2007-12-18 | 2007-12-18 | 인터페이스를 이용한 요구사항 추적/관리 시스템 |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
KR1020070133179A KR100976545B1 (ko) | 2007-12-18 | 2007-12-18 | 인터페이스를 이용한 요구사항 추적/관리 시스템 |
Publications (2)
Publication Number | Publication Date |
---|---|
KR20090065721A KR20090065721A (ko) | 2009-06-23 |
KR100976545B1 true KR100976545B1 (ko) | 2010-08-17 |
Family
ID=40993942
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
KR1020070133179A KR100976545B1 (ko) | 2007-12-18 | 2007-12-18 | 인터페이스를 이용한 요구사항 추적/관리 시스템 |
Country Status (1)
Country | Link |
---|---|
KR (1) | KR100976545B1 (ko) |
Cited By (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
KR20190129549A (ko) | 2018-05-11 | 2019-11-20 | 니덱모빌리티코리아 주식회사 | 비언어 요구사항 정보에 대한 소스코드 추적이 가능한 시스템 및 방법 |
Families Citing this family (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
KR101513056B1 (ko) * | 2013-11-06 | 2015-05-04 | 주식회사 엔에스이 | 요구사항 추적 관리 시스템 및 방법 |
CN110751361B (zh) * | 2019-09-03 | 2024-02-20 | 福建省农村信用社联合社 | 一种银行需求条目级管理方法及系统 |
CN113360184B (zh) * | 2021-06-04 | 2024-06-18 | 曙光信息产业(北京)有限公司 | 多生态间的软件迁移方法、装置、计算机设备及存储介质 |
KR102696519B1 (ko) * | 2022-06-28 | 2024-08-20 | 황수진 | 프로그래밍 모델을 이용한 자동프로그래밍 시스템 및 방법 |
KR102588597B1 (ko) * | 2023-08-24 | 2023-10-12 | 주식회사 리얼라이즈소프트 | Uml 시퀀스 다이어그램의 대체 에디터로서 오퍼레이션 로직 디자이너를 이용하여 프로그램을 설계하는 방법 및 그를 이용한 장치 |
Citations (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
KR20040069530A (ko) * | 2003-01-29 | 2004-08-06 | 주식회사 신지소프트 | 전자 제품의 원격 제어 방법 및 시스템 |
-
2007
- 2007-12-18 KR KR1020070133179A patent/KR100976545B1/ko active IP Right Grant
Patent Citations (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
KR20040069530A (ko) * | 2003-01-29 | 2004-08-06 | 주식회사 신지소프트 | 전자 제품의 원격 제어 방법 및 시스템 |
Cited By (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
KR20190129549A (ko) | 2018-05-11 | 2019-11-20 | 니덱모빌리티코리아 주식회사 | 비언어 요구사항 정보에 대한 소스코드 추적이 가능한 시스템 및 방법 |
Also Published As
Publication number | Publication date |
---|---|
KR20090065721A (ko) | 2009-06-23 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
KR100976545B1 (ko) | 인터페이스를 이용한 요구사항 추적/관리 시스템 | |
Crnkovic | Component‐based software engineering—new challenges in software development | |
Mens et al. | Evolving software architecture descriptions of critical systems | |
Grammel et al. | A generic traceability framework for facet-based traceability data extraction in model-driven software development | |
JP2006526209A (ja) | コンポーネント基盤環境下で拡張されたメタデータを利用したソフトウェア開発方法及びその開発システム | |
JP2009238229A (ja) | コンポーネント基盤環境下で拡張されたメタデータを利用したソフトウェア開発方法及びその開発システム | |
Buchmann et al. | Unifying modeling and programming with ALF | |
Mu et al. | Specification of modelling languages in a flexible meta-model architecture | |
Liu et al. | Model-driven design of tools for multi-domain systems with loosely coupled metamodels | |
Cuadrado et al. | Flexible Model-to-Model Transformation Templates: An Application to ATL. | |
Karsai et al. | A modeling language and its supporting tools for avionics systems | |
Pons et al. | Traceability across refinement steps in UML modeling | |
Harbo et al. | Communication oriented modeling of evolving systems of systems | |
Seidl et al. | Generative software product line development using variability-aware design patterns | |
Dinkloh et al. | A tool for integrated design and implementation of conversations in multiagent systems | |
Giachetti et al. | Using UML profiles to interchange DSML and UML models | |
Fries | A framework for transforming structured analysis and design artifacts to UML | |
Judson et al. | Supporting rigorous evolution of UML models | |
Schütze et al. | PSiGene: A pattern‐based component generator for building simulation | |
Rajabi et al. | Coevolution patterns to detect and manage uml diagrams changes | |
Hoisl et al. | Towards a systematic integration of MOF/UML-based domain-specific modeling languages | |
Pillain et al. | Towards an enactment mechanism for MODAL process models | |
Gowthaman et al. | Reengineering legacy source code to model driven architecture | |
Sindico et al. | An industrial application of a system engineering process integrating model-driven architecture and model based design | |
Ilic et al. | Formal verification of consistency in model-driven development of distributed communicating systems and communication protocols |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
A201 | Request for examination | ||
E902 | Notification of reason for refusal | ||
AMND | Amendment | ||
E601 | Decision to refuse application | ||
AMND | Amendment | ||
J201 | Request for trial against refusal decision | ||
B701 | Decision to grant | ||
GRNT | Written decision to grant | ||
FPAY | Annual fee payment |
Payment date: 20130530 Year of fee payment: 4 |
|
FPAY | Annual fee payment |
Payment date: 20140721 Year of fee payment: 5 |
|
FPAY | Annual fee payment |
Payment date: 20160811 Year of fee payment: 7 |
|
FPAY | Annual fee payment |
Payment date: 20180419 Year of fee payment: 8 |
|
R401 | Registration of restoration | ||
FPAY | Annual fee payment |
Payment date: 20180525 Year of fee payment: 9 |
|
FPAY | Annual fee payment |
Payment date: 20190809 Year of fee payment: 10 |