📄 processingelement.java
字号:
//===========================================================================//=-------------------------------------------------------------------------=//= Module history: =//= - May 18 2007 - Oscar Chavarro: Original base version =//===========================================================================package vsdk.toolkit.processing;/**DEFINITION: A `ProcessingElement` in VitralSDK is a software element withalgorithms and data structures (i.e. a class) with the specific functionalityfor manipulating and extract metadata from a data Entity (usually a geometriclow-level entity). Usually, a `ProcessingElement` provides stand-alone,self-contained 100% pure java algorithms, but can constitute also theplaceholder for wrappers that call external libraries and tools(as VTK, ITK, image processing toolkits, computational geometry toolkitsand external utilities).The ProcessingElement abstract class provides an interface for classes thatimplement strategy like design patterns (classes that encapsulates algorithms).This serves two purposes: - To help in design level organization of classes containing algorithms and associated working data (this eases the study of the class hierarchy) - To provide a place to locate possible future operations, common to all processing classes (but none of these as been detected yet)*/public abstract class ProcessingElement { ;}//===========================================================================//= EOF =//===========================================================================
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -