All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.persistence.internal.jaxb.AttributeNodeImpl Maven / Gradle / Ivy

There is a newer version: 5.0.0-B05
Show newest version
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