blob: 097615d9c905a1981478b6bc5d0e2b9e2440dea6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2011 Ericsson 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:
* Ericsson - initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.dsf.mi.service.command.output;
import org.eclipse.cdt.dsf.debug.service.command.ICommand;
import org.eclipse.cdt.dsf.debug.service.command.ICommandResult;
public class ExprMetaGetAttributesInfo implements ICommandResult {
private final boolean editable;
public ExprMetaGetAttributesInfo(boolean e) {
editable = e;
}
public boolean getEditable() {
return editable;
}
@Override
public <V extends ICommandResult> V getSubsetResult(ICommand<V> command) {
return null;
}
@Override
public String toString() {
return getClass().getSimpleName() + " (" + getEditable() + ")"; //$NON-NLS-1$ //$NON-NLS-2$
}
}