/// <summary>
		/// Adds the specified input method listener to receive
		/// input method events from this component.
		/// </summary>
		public void addInputMethodListener(InputMethodListener @l)
		{
		}
 /// <summary>
 /// Removes the specified input method listener so that it no longer
 /// receives input method events from this component.
 /// </summary>
 public void removeInputMethodListener(InputMethodListener @l)
 {
 }
Example #3
0
 /// <summary>
 /// Removes the old input-method-listener from input-method-listener-l and
 /// returns the resulting multicast listener. </summary>
 /// <param name="l"> input-method-listener-l </param>
 /// <param name="oldl"> the input-method-listener being removed </param>
 public static InputMethodListener Remove(InputMethodListener l, InputMethodListener oldl)
 {
     return((InputMethodListener)RemoveInternal(l, oldl));
 }
Example #4
0
 /// <summary>
 /// Adds input-method-listener-a with input-method-listener-b and
 /// returns the resulting multicast listener. </summary>
 /// <param name="a"> input-method-listener-a </param>
 /// <param name="b"> input-method-listener-b </param>
 public static InputMethodListener Add(InputMethodListener a, InputMethodListener b)
 {
     return((InputMethodListener)AddInternal(a, b));
 }
Example #5
0
 /// <summary>
 /// Adds the specified input method listener to receive
 /// input method events from this component.
 /// </summary>
 public void addInputMethodListener(InputMethodListener @l)
 {
 }
Example #6
0
 /// <summary>
 /// Removes the specified input method listener so that it no longer
 /// receives input method events from this component.
 /// </summary>
 public void removeInputMethodListener(InputMethodListener @l)
 {
 }