blob: 53337f79fe6fc284569dbdecd7a0c3f46ce74f8f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2011 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.pde.internal.runtime.registry.model;
public abstract class ModelObject {
/**
* The registry model, possibly <code>null</code>
*/
protected RegistryModel model;
public void setModel(RegistryModel model) {
this.model = model;
}
}