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

📄 documenttester.java

📁 Java样例程序集合:2D
💻 JAVA
字号:
import java.beans.beancontext.*;import java.util.*;/** * A test program that creates all of the objects, * a tests the service capabilities. Run this program * from the command line using java DocumentTester */public class DocumentTester {     public static void main(String[] args) {                 BeanContextServicesSupport context = new BeanContextServicesSupport(); // a bean context          DocumentBean doc1 = new DocumentBean("Test.txt");           context.add(doc1);          context.addBeanContextServicesListener(doc1); // listen for new services          WordCountServiceProvider provider = new WordCountServiceProvider();          context.addService(WordCount.class, provider); // add the service to the context     }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -