public class Product extends Object
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://schemas.microsoft.com/wix/2006/wi}Package"/> <choice maxOccurs="unbounded" minOccurs="0"> <element ref="{http://schemas.microsoft.com/wix/2006/wi}AppId"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}Binary"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}ComplianceCheck"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}Component"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}ComponentGroup"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}Condition"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}CustomAction"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}CustomActionRef"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}CustomTable"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}Directory"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}DirectoryRef"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}EmbeddedChainer"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}EmbeddedChainerRef"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}EnsureTable"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}Feature"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}FeatureRef"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}FeatureGroupRef"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}Icon"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}InstanceTransforms"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}MajorUpgrade"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}Media"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}MediaTemplate"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}PackageCertificates"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}PatchCertificates"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}Property"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}PropertyRef"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}SetDirectory"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}SetProperty"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}SFPCatalog"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}SymbolPath"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}UI"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}UIRef"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}Upgrade"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}WixVariable"/> <sequence> <element ref="{http://schemas.microsoft.com/wix/2006/wi}InstallExecuteSequence" minOccurs="0"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}InstallUISequence" minOccurs="0"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}AdminExecuteSequence" minOccurs="0"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}AdminUISequence" minOccurs="0"/> <element ref="{http://schemas.microsoft.com/wix/2006/wi}AdvertiseExecuteSequence" minOccurs="0"/> </sequence> <any processContents='lax' namespace='##other'/> </choice> </sequence> <attribute name="Id" use="required" type="{http://schemas.microsoft.com/wix/2006/wi}AutogenGuid" /> <attribute name="Codepage" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="Language" use="required" type="{http://schemas.microsoft.com/wix/2006/wi}LocalizableInteger" /> <attribute name="Manufacturer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="Name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="UpgradeCode" type="{http://schemas.microsoft.com/wix/2006/wi}Guid" /> <attribute name="Version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <anyAttribute processContents='lax' namespace='##other'/> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected Package |
_package |
protected List<Object> |
appIdOrBinaryOrComplianceCheck |
protected String |
codepage |
protected String |
id |
protected String |
language |
protected String |
manufacturer |
protected String |
name |
protected String |
upgradeCode |
protected String |
version |
Constructor and Description |
---|
Product()
Default no-arg constructor
|
Product(Package _package,
List<Object> appIdOrBinaryOrComplianceCheck,
String id,
String codepage,
String language,
String manufacturer,
String name,
String upgradeCode,
String version,
Map<QName,String> otherAttributes)
Fully-initialising value constructor
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object that) |
List<Object> |
getAppIdOrBinaryOrComplianceCheck()
Gets the value of the appIdOrBinaryOrComplianceCheck property.
|
String |
getCodepage()
Gets the value of the codepage property.
|
String |
getId()
Gets the value of the id property.
|
String |
getLanguage()
Gets the value of the language property.
|
String |
getManufacturer()
Gets the value of the manufacturer property.
|
String |
getName()
Gets the value of the name property.
|
Map<QName,String> |
getOtherAttributes()
Gets a map that contains attributes that aren't bound to any typed property on this class.
|
Package |
getPackage()
Gets the value of the package property.
|
String |
getUpgradeCode()
Gets the value of the upgradeCode property.
|
String |
getVersion()
Gets the value of the version property.
|
int |
hashCode() |
void |
setCodepage(String value)
Sets the value of the codepage property.
|
void |
setId(String value)
Sets the value of the id property.
|
void |
setLanguage(String value)
Sets the value of the language property.
|
void |
setManufacturer(String value)
Sets the value of the manufacturer property.
|
void |
setName(String value)
Sets the value of the name property.
|
void |
setPackage(Package value)
Sets the value of the package property.
|
void |
setUpgradeCode(String value)
Sets the value of the upgradeCode property.
|
void |
setVersion(String value)
Sets the value of the version property.
|
String |
toString() |
Product |
withAppIdOrBinaryOrComplianceCheck(Collection<Object> values) |
Product |
withAppIdOrBinaryOrComplianceCheck(Object... values) |
Product |
withCodepage(String value) |
Product |
withId(String value) |
Product |
withLanguage(String value) |
Product |
withManufacturer(String value) |
Product |
withName(String value) |
Product |
withPackage(Package value) |
Product |
withUpgradeCode(String value) |
Product |
withVersion(String value) |
protected List<Object> appIdOrBinaryOrComplianceCheck
protected String manufacturer
protected String upgradeCode
public Product()
public Package getPackage()
Package
public void setPackage(Package value)
value
- allowed object is
Package
public List<Object> getAppIdOrBinaryOrComplianceCheck()
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 appIdOrBinaryOrComplianceCheck property.
For example, to add a new item, do as follows:
getAppIdOrBinaryOrComplianceCheck().add(newItem);
Objects of the following type(s) are allowed in the list
DirectoryRef
AdminExecuteSequence
EmbeddedChainer
CustomTable
InstanceTransforms
PatchCertificates
Property
PackageCertificates
PropertyRef
EmbeddedChainerRef
SFPCatalog
AppId
Media
AdminUISequence
ComponentGroup
CustomActionRef
MajorUpgrade
CustomAction
FeatureRef
SymbolPath
WixVariable
Element
Icon
SetProperty
AdvertiseExecuteSequence
Feature
Condition
SetDirectory
Component
InstallExecuteSequence
Binary
Upgrade
InstallUISequence
Directory
FeatureGroupRef
UI
ComplianceCheck
EnsureTable
MediaTemplate
Object
UIRef
public void setId(String value)
value
- allowed object is
String
public String getCodepage()
String
public void setCodepage(String value)
value
- allowed object is
String
public String getLanguage()
String
public void setLanguage(String value)
value
- allowed object is
String
public String getManufacturer()
String
public void setManufacturer(String value)
value
- allowed object is
String
public String getName()
String
public void setName(String value)
value
- allowed object is
String
public String getUpgradeCode()
String
public void setUpgradeCode(String value)
value
- allowed object is
String
public String getVersion()
String
public void setVersion(String value)
value
- allowed object is
String
public Map<QName,String> getOtherAttributes()
the map is keyed by the name of the attribute and the value is the string value of the attribute. the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter.
public Product withPackage(Package value)
public Product withAppIdOrBinaryOrComplianceCheck(Object... values)
public Product withAppIdOrBinaryOrComplianceCheck(Collection<Object> values)
public Product withCodepage(String value)
public Product withLanguage(String value)
public Product withManufacturer(String value)
public Product withUpgradeCode(String value)
public Product withVersion(String value)
Copyright © 2019. All rights reserved.