blob: 0b35ed0f884e21f46eabdccb350d0a2ca90ce230 [file] [log] [blame]
package org.eclipse.persistence.internal.jaxb;
import org.eclipse.persistence.jaxb.AttributeNode;
public class AttributeNodeImpl<X> implements AttributeNode {
protected String currentAttribute;
public AttributeNodeImpl() {
}
public AttributeNodeImpl(String attributeName) {
this.currentAttribute = attributeName;
}
public String getAttributeName() {
return currentAttribute;
}
}