
org.eclipse.persistence.internal.jaxb.AttributeNodeImpl Maven / Gradle / Ivy
package org.eclipse.persistence.internal.jaxb;
import org.eclipse.persistence.jaxb.AttributeNode;
public class AttributeNodeImpl implements AttributeNode {
protected String currentAttribute;
public AttributeNodeImpl() {
}
public AttributeNodeImpl(String attributeName) {
this.currentAttribute = attributeName;
}
public String getAttributeName() {
return currentAttribute;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy