progressmonitor.java
来自「基于java的3d开发库。对坐java3d的朋友有很大的帮助。」· Java 代码 · 共 29 行
JAVA
29 行
//===========================================================================//=-------------------------------------------------------------------------=//= Module history: =//= - March 19 2006 - Oscar Chavarro: Original base version =//===========================================================================package vsdk.toolkit.gui;/**This interface is designed to staandarize a way in which any slow or heavycomputation process provided by the VSDK toolkit can be monitored. Somealgorithms like raytracing use classes inherited from this interface toinform to the main application or subsystem the relative advance in itsoperations. Note that this interface provides a mechanism to informadvance to the containing applicacion in a technology independent way(for example, this does not depend on specific GUI widgets). Note thata simple reference implementation for console applications is provided inthis package.*/public abstract class ProgressMonitor extends PresentationElement { public abstract void begin(); public abstract void end(); public abstract void update(double minValue, double maxValue, double currentValue);}//===========================================================================//= EOF =//===========================================================================
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?