blob: 70007caebd691cf1ac46c063a699bb45d757b667 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2015 CEA LIST.
*
* 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:
* Thomas Daniellou (CEA LIST) - Initial API and implementation
*****************************************************************************/
package org.eclipse.papyrus.adltool.reversible.extension;
/**
* This class represents a schema attribute that is defined by an extension point.
*/
public class SchemaAttribute {
private String name;
private String value;
public SchemaAttribute(String name) {
setName(name);
}
public SchemaAttribute(String name, String value) {
setName(name);
setValue(value);
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}