⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 progressmonitor.java

📁 基于java的3d开发库。对坐java3d的朋友有很大的帮助。
💻 JAVA
字号:
//===========================================================================//=-------------------------------------------------------------------------=//= 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -