![JAR search and dependency download from the Maven repository](/logo.png)
de.javagl.jgltf.impl.v2.GlTFChildOfRootProperty Maven / Gradle / Ivy
The newest version!
/*
* glTF JSON model
*
* Do not modify this class. It is automatically generated
* with JsonModelGen (https://github.com/javagl/JsonModelGen)
* Copyright (c) 2016-2021 Marco Hutter - http://www.javagl.de
*/
package de.javagl.jgltf.impl.v2;
/**
* Auto-generated for glTFChildOfRootProperty.schema.json
*
*/
public class GlTFChildOfRootProperty
extends GlTFProperty
{
/**
* The user-defined name of this object. (optional)
*
*/
private String name;
/**
* The user-defined name of this object. (optional)
*
* @param name The name to set
*
*/
public void setName(String name) {
if (name == null) {
this.name = name;
return ;
}
this.name = name;
}
/**
* The user-defined name of this object. (optional)
*
* @return The name
*
*/
public String getName() {
return this.name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy