All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jface.bindings.SchemeEvent Maven / Gradle / Ivy

There is a newer version: 3.29.0
Show newest version
/*******************************************************************************
 * Copyright (c) 2004, 2006 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.jface.bindings;

import org.eclipse.core.commands.common.AbstractNamedHandleEvent;

/**
 * An instance of this class describes changes to an instance of
 * IScheme.
 * 

* This class is not intended to be extended by clients. *

* * @since 1.4 * @see ISchemeListener#schemeChanged(SchemeEvent) */ public final class SchemeEvent extends AbstractNamedHandleEvent { /** * The bit used to represent whether the scheme has changed its parent. */ private static final int CHANGED_PARENT_ID = LAST_USED_BIT << 1; /** * The scheme that has changed; this value is never null. */ private final Scheme scheme; /** * Creates a new instance of this class. * * @param scheme * the instance of the interface that changed; must not be * null. * @param definedChanged * true, iff the defined property changed. * @param nameChanged * true, iff the name property changed. * @param descriptionChanged * true if the description property changed; * false otherwise. * @param parentIdChanged * true, iff the parentId property changed. */ public SchemeEvent(Scheme scheme, boolean definedChanged, boolean nameChanged, boolean descriptionChanged, boolean parentIdChanged) { super(definedChanged, descriptionChanged, nameChanged); if (scheme == null) { throw new NullPointerException(); } this.scheme = scheme; if (parentIdChanged) { changedValues |= CHANGED_PARENT_ID; } } /** * Returns the instance of the scheme that changed. * * @return the instance of the scheme that changed. Guaranteed not to be * null. */ public final Scheme getScheme() { return scheme; } /** * Returns whether or not the parentId property changed. * * @return true, iff the parentId property changed. */ public final boolean isParentIdChanged() { return ((changedValues & CHANGED_PARENT_ID) != 0); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy