io.apicurio.datamodels.models.RootNodeImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apicurio-data-models Show documentation
Show all versions of apicurio-data-models Show documentation
Open Source API Design Studio
The newest version!
package io.apicurio.datamodels.models;
public abstract class RootNodeImpl extends NodeImpl implements RootNode {
private final ModelType _modelType;
public RootNodeImpl(ModelType modelType) {
this._modelType = modelType;
}
@Override
public RootNode root() {
return this;
}
@Override
public ModelType modelType() {
return this._modelType;
}
}