blob: 1844511122aa3b13f9536235f3674f74a08539bb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 QNX Software Systems 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
*******************************************************************************/
package org.eclipse.tools.templates.ui.internal;
import org.eclipse.core.runtime.IConfigurationElement;
public class Tag {
public static final String ALL_ID = "all"; //$NON-NLS-1$
public String id;
public String label;
public Tag(IConfigurationElement element) {
id = element.getAttribute("id"); //$NON-NLS-1$
label = element.getAttribute("label"); //$NON-NLS-1$
}
public Tag(String id, String label) {
this.id = id;
this.label = label;
}
public String getId() {
return id;
}
public String getLabel() {
return label;
}
@Override
public int hashCode() {
return id.hashCode();
}
@Override
public boolean equals(Object obj) {
if (obj instanceof Tag) {
return id.equals(((Tag) obj).id);
} else {
return false;
}
}
}