1 11 12 package org.eclipse.core.commands.common; 13 14 22 public abstract class AbstractHandleObjectEvent extends AbstractBitSetEvent { 23 24 28 protected static final int CHANGED_DEFINED = 1; 29 30 33 protected static final int LAST_BIT_USED_ABSTRACT_HANDLE = CHANGED_DEFINED; 34 35 41 protected AbstractHandleObjectEvent(final boolean definedChanged) { 42 if (definedChanged) { 43 changedValues |= CHANGED_DEFINED; 44 } 45 } 46 47 52 public final boolean isDefinedChanged() { 53 return ((changedValues & CHANGED_DEFINED) != 0); 54 } 55 } 56 | Popular Tags |