blob: 35919289b1887b844faaf8759875b9a5fbbfb54d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2016 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.ui.internal.intro.impl.model;
import org.eclipse.core.runtime.IConfigurationElement;
/**
* An intro url command registration. This model class does not appear as a
* child under any of the other model classes. It is returned by the
* SharedConfigExtensionsManager when asked for commands.
*/
public class IntroURLAction extends AbstractIntroElement {
public static final String TAG_ACTION = "action"; //$NON-NLS-1$
private static final String ATT_NAME = "name"; //$NON-NLS-1$
private static final String ATT_REPLACES = "replaces"; //$NON-NLS-1$
private String name;
private String replaces;
/**
* Note: model class with public constructor because it is not instantiated
* by the model root.
*/
public IntroURLAction(IConfigurationElement element) {
super(element);
name = element.getAttribute(ATT_NAME);
replaces = element.getAttribute(ATT_REPLACES);
}
/**
* @return Returns the className.
*/
public String getName() {
return name;
}
/**
* @return Returns the pluginId.
*/
public String getReplaceValue() {
return replaces;
}
@Override
public int getType() {
// this model class does not need a type so far.
return 0;
}
}