blob: 73b9f9af4ad8073e85c688402d0e387df85789c2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2013 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.internal.core.build;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.Status;
import org.eclipse.pde.core.build.IBuildModel;
import org.eclipse.pde.internal.core.PDECoreMessages;
public class BuildObject implements IBuildObject {
private IBuildModel fModel;
private boolean fInTheModel;
@Override
public boolean isInTheModel() {
return fInTheModel;
}
@Override
public void setInTheModel(boolean inTheModel) {
fInTheModel = inTheModel;
}
protected void ensureModelEditable() throws CoreException {
if (!fModel.isEditable()) {
throwCoreException(PDECoreMessages.BuildObject_readOnlyException);
}
}
public IBuildModel getModel() {
return fModel;
}
void setModel(IBuildModel model) {
fModel = model;
}
protected void throwCoreException(String message) throws CoreException {
throw new CoreException(Status.error(message));
}
/**
* If the property defined by name is valid, changes its value to newValue
*
* @param name name of the property to modify
* @param oldValue the previous value
* @param newValue the new value
* @throws CoreException if the build model is read only
*/
public void restoreProperty(String name, Object oldValue, Object newValue) throws CoreException {
}
}