diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/datamodel/AbstractDMEvent.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/datamodel/AbstractDMEvent.java index bd5f3b21208..10122288033 100644 --- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/datamodel/AbstractDMEvent.java +++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/datamodel/AbstractDMEvent.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2006, 2007 Wind River Systems and others. + * Copyright (c) 2006, 2009 Wind River Systems 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 @@ -13,8 +13,9 @@ package org.eclipse.cdt.dsf.datamodel; import org.eclipse.cdt.dsf.concurrent.Immutable; /** - * Base implementation of the IDMEvent interface. It only handles the - * required DM-Context reference. + * Base implementation of the IDMEvent interface. Sub-classes should contain + * specific information about the event, while this base class only identifies + * the DM Context that is affected. * * @since 1.0 */ diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/datamodel/IDMEvent.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/datamodel/IDMEvent.java index 2da76bdcb85..a4917cc7ed2 100644 --- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/datamodel/IDMEvent.java +++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/datamodel/IDMEvent.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2006, 2007 Wind River Systems and others. + * Copyright (c) 2006, 2009 Wind River Systems 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 @@ -10,12 +10,13 @@ *******************************************************************************/ package org.eclipse.cdt.dsf.datamodel; - /** - * Common interface for events that signify changes in the data model. - * The sub-classes should contain specific information about the event, while - * this base class only identifies the DM Context that is affected. - * @param Data Model context type that is affected by this event. + * Base interface for events that signify changes in the data model. The only + * thing all such events must have in common is that they reference an + * {@link IDMContext} + * + * @param + * Data Model context type that is affected by this event. * * @since 1.0 */