1
2
3
4
5
6
7
8
9
10
11
public class Activator implements BundleActivator {
 
    public void start(BundleContext context) throws Exception {
        System.out.println("Hello World!!");
    }
     
    public void stop(BundleContext context) throws Exception {
        System.out.println("Goodbye World!!");
    }
 
}

相关文章:

  • 2021-07-07
  • 2021-11-18
  • 2021-10-23
  • 2021-09-09
  • 2021-11-20
  • 2022-12-23
猜你喜欢
  • 2021-10-20
  • 2021-10-24
  • 2021-05-14
  • 2021-11-02
  • 2021-09-28
  • 2021-06-17
  • 2021-07-08
相关资源
相似解决方案