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

com.eprosima.xmlschemas.fastrtps_profiles.StructDcl Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version

package com.eprosima.xmlschemas.fastrtps_profiles;

import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for structDcl complex type

. * *

The following schema fragment specifies the expected content contained within this class.

* *
{@code
 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "structDcl", propOrder = { "member" }) public class StructDcl { @XmlElement(required = true) protected List member; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "baseType") protected String baseType; /** * Gets the value of the member property. * *

This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the member property.

* *

* For example, to add a new item, do as follows: *

*
     * getMember().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link MemberDcl } *

* * * @return * The value of the member property. */ public List getMember() { if (member == null) { member = new ArrayList<>(); } return this.member; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the baseType property. * * @return * possible object is * {@link String } * */ public String getBaseType() { return baseType; } /** * Sets the value of the baseType property. * * @param value * allowed object is * {@link String } * */ public void setBaseType(String value) { this.baseType = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy