org.eclipse.core.commands.CommandEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotless-ext-greclipse Show documentation
Show all versions of spotless-ext-greclipse Show documentation
Groovy Eclipse's formatter bundled for Spotless
The newest version!
/*******************************************************************************
* Copyright (c) 2004, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.commands;
import org.eclipse.core.commands.common.AbstractNamedHandleEvent;
/**
* An instance of this class describes changes to an instance of
* Command
.
*
* This class is not intended to be extended by clients.
*
*
* @since 3.1
* @see ICommandListener#commandChanged(CommandEvent)
*/
public final class CommandEvent extends AbstractNamedHandleEvent {
/**
* The bit used to represent whether the command has changed its category.
*/
private static final int CHANGED_CATEGORY = LAST_USED_BIT << 1;
/**
* The bit used to represent whether the command has changed its handler.
*/
private static final int CHANGED_HANDLED = LAST_USED_BIT << 2;
/**
* The bit used to represent whether the command has changed its parameters.
*/
private static final int CHANGED_PARAMETERS = LAST_USED_BIT << 3;
/**
* The bit used to represent whether the command has changed its return
* type.
*
* @since 3.2
*/
private static final int CHANGED_RETURN_TYPE = LAST_USED_BIT << 4;
/**
* The bit used to represent whether the command has changed its help
* context identifier.
*
* @since 3.2
*/
private static final int CHANGED_HELP_CONTEXT_ID = LAST_USED_BIT << 5;
/**
* The bit used to represent whether this commands active handler has
* changed its enablement state.
*
* @since 3.3
*/
private static final int CHANGED_ENABLED = LAST_USED_BIT << 6;
/**
* The command that has changed; this value is never null
.
*/
private final Command command;
/**
* Creates a new instance of this class.
*
* @param command
* the instance of the interface that changed.
* @param categoryChanged
* true
, iff the category property changed.
* @param definedChanged
* true
, iff the defined property changed.
* @param descriptionChanged
* true
, iff the description property changed.
* @param handledChanged
* true
, iff the handled property changed.
* @param nameChanged
* true
, iff the name property changed.
* @param parametersChanged
* true
if the parameters have changed;
* false
otherwise.
*/
public CommandEvent(final Command command, final boolean categoryChanged,
final boolean definedChanged, final boolean descriptionChanged,
final boolean handledChanged, final boolean nameChanged,
final boolean parametersChanged) {
this(command, categoryChanged, definedChanged, descriptionChanged,
handledChanged, nameChanged, parametersChanged, false);
}
/**
* Creates a new instance of this class.
*
* @param command
* the instance of the interface that changed.
* @param categoryChanged
* true
, iff the category property changed.
* @param definedChanged
* true
, iff the defined property changed.
* @param descriptionChanged
* true
, iff the description property changed.
* @param handledChanged
* true
, iff the handled property changed.
* @param nameChanged
* true
, iff the name property changed.
* @param parametersChanged
* true
if the parameters have changed;
* false
otherwise.
* @param returnTypeChanged
* true
iff the return type property changed;
* false
otherwise.
* @since 3.2
*/
public CommandEvent(final Command command, final boolean categoryChanged,
final boolean definedChanged, final boolean descriptionChanged,
final boolean handledChanged, final boolean nameChanged,
final boolean parametersChanged, final boolean returnTypeChanged) {
this(command, categoryChanged, definedChanged, descriptionChanged,
handledChanged, nameChanged, parametersChanged,
returnTypeChanged, false);
}
/**
* Creates a new instance of this class.
*
* @param command
* the instance of the interface that changed.
* @param categoryChanged
* true
, iff the category property changed.
* @param definedChanged
* true
, iff the defined property changed.
* @param descriptionChanged
* true
, iff the description property changed.
* @param handledChanged
* true
, iff the handled property changed.
* @param nameChanged
* true
, iff the name property changed.
* @param parametersChanged
* true
if the parameters have changed;
* false
otherwise.
* @param returnTypeChanged
* true
iff the return type property changed;
* false
otherwise.
* @param helpContextIdChanged
* true
iff the help context identifier changed;
* false
otherwise.
* @since 3.2
*/
public CommandEvent(final Command command, final boolean categoryChanged,
final boolean definedChanged, final boolean descriptionChanged,
final boolean handledChanged, final boolean nameChanged,
final boolean parametersChanged, final boolean returnTypeChanged,
final boolean helpContextIdChanged) {
this(command, categoryChanged, definedChanged, descriptionChanged,
handledChanged, nameChanged, parametersChanged,
returnTypeChanged, helpContextIdChanged, false);
}
/**
* Creates a new instance of this class.
*
* @param command
* the instance of the interface that changed.
* @param categoryChanged
* true
, iff the category property changed.
* @param definedChanged
* true
, iff the defined property changed.
* @param descriptionChanged
* true
, iff the description property changed.
* @param handledChanged
* true
, iff the handled property changed.
* @param nameChanged
* true
, iff the name property changed.
* @param parametersChanged
* true
if the parameters have changed;
* false
otherwise.
* @param returnTypeChanged
* true
iff the return type property changed;
* false
otherwise.
* @param helpContextIdChanged
* true
iff the help context identifier changed;
* false
otherwise.
* @param enabledChanged
* true
iff the comand enablement changed;
* false
otherwise.
* @since 3.3
*/
public CommandEvent(final Command command, final boolean categoryChanged,
final boolean definedChanged, final boolean descriptionChanged,
final boolean handledChanged, final boolean nameChanged,
final boolean parametersChanged, final boolean returnTypeChanged,
final boolean helpContextIdChanged, final boolean enabledChanged) {
super(definedChanged, descriptionChanged, nameChanged);
if (command == null) {
throw new NullPointerException();
}
this.command = command;
if (categoryChanged) {
changedValues |= CHANGED_CATEGORY;
}
if (handledChanged) {
changedValues |= CHANGED_HANDLED;
}
if (parametersChanged) {
changedValues |= CHANGED_PARAMETERS;
}
if (returnTypeChanged) {
changedValues |= CHANGED_RETURN_TYPE;
}
if (helpContextIdChanged) {
changedValues |= CHANGED_HELP_CONTEXT_ID;
}
if (enabledChanged) {
changedValues |= CHANGED_ENABLED;
}
}
/**
* Returns the instance of the interface that changed.
*
* @return the instance of the interface that changed. Guaranteed not to be
* null
.
*/
public final Command getCommand() {
return command;
}
/**
* Returns whether or not the category property changed.
*
* @return true
, iff the category property changed.
*/
public final boolean isCategoryChanged() {
return ((changedValues & CHANGED_CATEGORY) != 0);
}
/**
* Returns whether or not the handled property changed.
*
* @return true
, iff the handled property changed.
*/
public final boolean isHandledChanged() {
return ((changedValues & CHANGED_HANDLED) != 0);
}
/**
* Returns whether or not the help context identifier changed.
*
* @return true
, iff the help context identifier changed.
* @since 3.2
*/
public final boolean isHelpContextIdChanged() {
return ((changedValues & CHANGED_HELP_CONTEXT_ID) != 0);
}
/**
* Returns whether or not the parameters have changed.
*
* @return true
, iff the parameters property changed.
*/
public final boolean isParametersChanged() {
return ((changedValues & CHANGED_PARAMETERS) != 0);
}
/**
* Returns whether or not the return type property changed.
*
* @return true
, iff the return type property changed.
* @since 3.2
*/
public final boolean isReturnTypeChanged() {
return ((changedValues & CHANGED_RETURN_TYPE) != 0);
}
/**
* Return whether the enable property changed.
*
* @return true
iff the comand enablement changed
* @since 3.3
*/
public final boolean isEnabledChanged() {
return ((changedValues & CHANGED_ENABLED) != 0);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy