📄 component.java
字号:
//===========================================================================//=-------------------------------------------------------------------------=//= Module history: =//= - July 12 2007 - Oscar Chavarro: Original base version =//===========================================================================package vsdk.framework;/**DEFINITION: A `Component` in VitralSDK is a software container for a"component" in the sence of object oriented programming (programming structuredover software components). Subclasses of class `Component` usually correspondto interfaces and concrete classes, and to design patterns structures showedin a "UML component diagram" inside a "Component". Each component exposesits "services" via "interfaces" of such classes, and its correspondencesdenotes the "required" services from other components.Note that all Vitral architecture components depends upon the Vitral SDKtoolkit software platfotm contained in the vsdk.toolkit package.The Component abstract class provides an interface for classes conformingto Vitral software architecture for computer graphics development.It serves two purposes: - To help in design level organization of Vitral architecture componets (this eases the study of the class hierarchy) - To provide a place to locate possible future operations, common to all components (but none of these as been detected yet)Note that this is a very high-level organizing class inside the Vitral SDK,and it is supposed to be here to support high level design aspects(software architecture).*/public abstract class Component{ ;}//===========================================================================//= EOF =//===========================================================================
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -