/// <summary>
		/// Sets the key combination which invokes the menu item's
		/// action listeners without navigating the menu hierarchy.
		/// </summary>
		public void setAccelerator(KeyStroke @keyStroke)
		{
		}
		/// <summary>
		/// Removes the binding for <code>key</code> from this object.
		/// </summary>
		public void remove(KeyStroke @key)
		{
		}
		/// <summary>
		/// Invokes <code>actionPerformed</code> on <code>action</code> if
		/// <code>action</code> is enabled (and non null).
		/// </summary>
		static public bool notifyAction(Action @action, KeyStroke @ks, KeyEvent @event, object @sender, int @modifiers)
		{
			return default(bool);
		}
Beispiel #4
0
 /// <summary>
 /// Sets the key combination which invokes the menu item's
 /// action listeners without navigating the menu hierarchy.
 /// </summary>
 public void setAccelerator(KeyStroke @keyStroke)
 {
 }
		/// <summary>
		/// Adds a binding for <code>keyStroke</code> to <code>actionMapKey</code>.
		/// </summary>
		public void put(KeyStroke @keyStroke, object @actionMapKey)
		{
		}
 /// <summary>
 /// Adds a binding for <code>keyStroke</code> to <code>actionMapKey</code>.
 /// </summary>
 public void put(KeyStroke @keyStroke, object @actionMapKey)
 {
 }
Beispiel #7
0
 /// <summary>
 /// Returns the object that will perform the action registered for a
 /// given keystroke.
 /// </summary>
 public ActionListener getActionForKeyStroke(KeyStroke @aKeyStroke)
 {
     return(default(ActionListener));
 }
		/// <summary>
		/// Returns the object that will perform the action registered for a
		/// given keystroke.
		/// </summary>
		public ActionListener getActionForKeyStroke(KeyStroke @aKeyStroke)
		{
			return default(ActionListener);
		}
		/// <summary>
		/// Returns the condition that determines whether a registered action
		/// occurs in response to the specified keystroke.
		/// </summary>
		public int getConditionForKeyStroke(KeyStroke @aKeyStroke)
		{
			return default(int);
		}
 /// <summary>
 /// Invokes <code>actionPerformed</code> on <code>action</code> if
 /// <code>action</code> is enabled (and non null).
 /// </summary>
 static public bool notifyAction(Action @action, KeyStroke @ks, KeyEvent @event, object @sender, int @modifiers)
 {
     return(default(bool));
 }
		/// <summary>
		/// This method is now obsolete.
		/// </summary>
		public void unregisterKeyboardAction(KeyStroke @aKeyStroke)
		{
		}
		/// <summary>
		/// Returns the binding for <code>keyStroke</code>, messaging the
		/// parent <code>InputMap</code> if the binding is not locally defined.
		/// </summary>
		public object get(KeyStroke @keyStroke)
		{
			return default(object);
		}
Beispiel #13
0
 /// <summary>
 /// This method is now obsolete, please use a combination of
 /// <code>getActionMap()</code> and <code>getInputMap()</code> for
 /// similiar behavior.
 /// </summary>
 public void registerKeyboardAction(ActionListener @anAction, string @aCommand, KeyStroke @aKeyStroke, int @aCondition)
 {
 }
Beispiel #14
0
 /// <summary>
 /// Returns the condition that determines whether a registered action
 /// occurs in response to the specified keystroke.
 /// </summary>
 public int getConditionForKeyStroke(KeyStroke @aKeyStroke)
 {
     return(default(int));
 }
 /// <summary>
 /// Subclassed to check all the child menus.
 /// </summary>
 protected bool processKeyBinding(KeyStroke @ks, KeyEvent @e, int @condition, bool @pressed)
 {
     return(default(bool));
 }
		/// <summary>
		/// Invoked to process the key bindings for <code>ks</code> as the result
		/// of the <code>KeyEvent</code> <code>e</code>.
		/// </summary>
		protected bool processKeyBinding(KeyStroke @ks, KeyEvent @e, int @condition, bool @pressed)
		{
			return default(bool);
		}
 /// <summary>
 /// Returns the binding for <code>keyStroke</code>, messaging the
 /// parent <code>InputMap</code> if the binding is not locally defined.
 /// </summary>
 public object get(KeyStroke @keyStroke)
 {
     return(default(object));
 }
		/// <summary>
		/// This method is now obsolete, please use a combination of
		/// <code>getActionMap()</code> and <code>getInputMap()</code> for
		/// similiar behavior.
		/// </summary>
		public void registerKeyboardAction(ActionListener @anAction, string @aCommand, KeyStroke @aKeyStroke, int @aCondition)
		{
		}
 /// <summary>
 /// Removes the binding for <code>key</code> from this
 /// <code>InputMap</code>.
 /// </summary>
 public void remove(KeyStroke @key)
 {
 }
Beispiel #20
0
 /// <summary>
 /// This method is now obsolete.
 /// </summary>
 public void unregisterKeyboardAction(KeyStroke @aKeyStroke)
 {
 }