예제 #1
0
		/// <summary>
		/// Adds the specified container listener to receive container events
		/// from this container.
		/// </summary>
		public void addContainerListener(ContainerListener @l)
		{
		}
예제 #2
0
		/// <summary>
		/// Removes the specified container listener so it no longer receives
		/// container events from this container.
		/// </summary>
		public void removeContainerListener(ContainerListener @l)
		{
		}
예제 #3
0
 /// <summary>
 /// Removes the old container-listener from container-listener-l and
 /// returns the resulting multicast listener. </summary>
 /// <param name="l"> container-listener-l </param>
 /// <param name="oldl"> the container-listener being removed </param>
 public static ContainerListener Remove(ContainerListener l, ContainerListener oldl)
 {
     return((ContainerListener)RemoveInternal(l, oldl));
 }
예제 #4
0
 /// <summary>
 /// Adds container-listener-a with container-listener-b and
 /// returns the resulting multicast listener. </summary>
 /// <param name="a"> container-listener-a </param>
 /// <param name="b"> container-listener-b </param>
 public static ContainerListener Add(ContainerListener a, ContainerListener b)
 {
     return((ContainerListener)AddInternal(a, b));
 }
예제 #5
0
 /// <summary>
 /// Adds the specified container listener to receive container events
 /// from this container.
 /// </summary>
 public void addContainerListener(ContainerListener @l)
 {
 }
예제 #6
0
 /// <summary>
 /// Removes the specified container listener so it no longer receives
 /// container events from this container.
 /// </summary>
 public void removeContainerListener(ContainerListener @l)
 {
 }