public class

AttributeType

extends Object
java.lang.Object
   ↳ ebay.apis.eblbasecomponents.AttributeType

Class Overview

Specific physical attribute of an item.

Java class for AttributeType complex type.

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

 <complexType name="AttributeType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="Value" type="{urn:ebay:apis:eBLBaseComponents}ValType" maxOccurs="unbounded"/>
       </sequence>
       <attribute name="AttributeID" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 

Summary

Fields
protected String attributeID
protected List<ValType> value
Public Constructors
AttributeType()
Public Methods
String getAttributeID()
Gets the value of the attributeID property.
List<ValType> getValue()
Gets the value of the value property.
void setAttributeID(String value)
Sets the value of the attributeID property.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

protected String attributeID

protected List<ValType> value

Public Constructors

public AttributeType ()

Public Methods

public String getAttributeID ()

Gets the value of the attributeID property.

Returns
  • possible object is String

public List<ValType> getValue ()

Gets the value of the value 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 value property.

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

    getValue().add(newItem);
 

Objects of the following type(s) are allowed in the list ValType

public void setAttributeID (String value)

Sets the value of the attributeID property.

Parameters
value Allowed object is String