1 26 27 package org.objectweb.openccm.Deployment.listener; 28 29 36 public class ContainerListenerDefault 37 extends ContainerListenerBase 38 { 39 44 public 45 ContainerListenerDefault(org.objectweb.openccm.Deployment.ContainerLocal source) 46 { 47 super(source); 48 } 49 50 55 protected org.objectweb.openccm.Deployment.listener.ContainerListener 56 _new() 57 { 58 return null; 59 } 60 61 66 public org.objectweb.openccm.Deployment.listener.CCMHomeListener 67 get_sub_listener() 68 { 69 return null; 70 } 71 72 77 public void 78 on_create (org.omg.Components.CCMHome ref) 79 { 80 System.out.println ("ContainerListener::on_create"+ref); 81 } 82 83 88 public void 89 on_add (org.omg.Components.CCMHome ref) 90 { 91 System.out.println ("ContainerListener::on_add"+ref); 92 } 93 94 99 public void 100 on_remove (org.omg.Components.CCMHome ref) 101 { 102 System.out.println ("ContainerListener::on_remove"+ref); 103 } 104 105 109 public void 110 on_destroy () 111 { 112 System.out.println ("ContainerListener::on_destroy"); 113 } 114 } 115 116 117 | Popular Tags |