Class CompanyCT
- java.lang.Object
-
- fi.tut.mei.resdescapi.rdapi.model.rd.CompanyCT
-
public class CompanyCT extends Object
Company information. Associates to e.g. Vendor, System Integrator. Default language is 'en'.Java class for Company_CT complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Company_CT"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="NameLoc" type="{https://resourcedescription.rd.tuni.fi/XMLSchema/2016}LocalizedString_CT" maxOccurs="unbounded"/> <element name="Link" type="{https://resourcedescription.rd.tuni.fi/XMLSchema/2016}SingleLinkType_CT" maxOccurs="unbounded"/> </sequence> <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected String
id
protected List<SingleLinkTypeCT>
link
protected List<LocalizedStringCT>
nameLoc
-
Constructor Summary
Constructors Constructor Description CompanyCT()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getId()
Gets the value of the id property.List<SingleLinkTypeCT>
getLink()
Gets the value of the link property.List<LocalizedStringCT>
getNameLoc()
Gets the value of the nameLoc property.void
setId(String value)
Sets the value of the id property.
-
-
-
Field Detail
-
nameLoc
protected List<LocalizedStringCT> nameLoc
-
link
protected List<SingleLinkTypeCT> link
-
id
protected String id
-
-
Method Detail
-
getNameLoc
public List<LocalizedStringCT> getNameLoc()
Gets the value of the nameLoc 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 nameLoc property.For example, to add a new item, do as follows:
getNameLoc().add(newItem);
Objects of the following type(s) are allowed in the list
LocalizedStringCT
-
getLink
public List<SingleLinkTypeCT> getLink()
Gets the value of the link 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 link property.For example, to add a new item, do as follows:
getLink().add(newItem);
Objects of the following type(s) are allowed in the list
SingleLinkTypeCT
-
-