public class Dialog 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}Control" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="Id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="X" type="{http://www.w3.org/2001/XMLSchema}integer" /> <attribute name="Y" type="{http://www.w3.org/2001/XMLSchema}integer" /> <attribute name="Width" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" /> <attribute name="Height" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" /> <attribute name="Title" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="Hidden" type="{http://schemas.microsoft.com/wix/2006/wi}YesNoTypeUnion" /> <attribute name="Modeless" type="{http://schemas.microsoft.com/wix/2006/wi}YesNoTypeUnion" /> <attribute name="NoMinimize" type="{http://schemas.microsoft.com/wix/2006/wi}YesNoTypeUnion" /> <attribute name="SystemModal" type="{http://schemas.microsoft.com/wix/2006/wi}YesNoTypeUnion" /> <attribute name="KeepModeless" type="{http://schemas.microsoft.com/wix/2006/wi}YesNoTypeUnion" /> <attribute name="TrackDiskSpace" type="{http://schemas.microsoft.com/wix/2006/wi}YesNoTypeUnion" /> <attribute name="CustomPalette" type="{http://schemas.microsoft.com/wix/2006/wi}YesNoTypeUnion" /> <attribute name="RightToLeft" type="{http://schemas.microsoft.com/wix/2006/wi}YesNoTypeUnion" /> <attribute name="RightAligned" type="{http://schemas.microsoft.com/wix/2006/wi}YesNoTypeUnion" /> <attribute name="LeftScroll" type="{http://schemas.microsoft.com/wix/2006/wi}YesNoTypeUnion" /> <attribute name="ErrorDialog" type="{http://schemas.microsoft.com/wix/2006/wi}YesNoTypeUnion" /> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected List<Control> |
control |
protected String |
customPalette |
protected String |
errorDialog |
protected BigInteger |
height |
protected String |
hidden |
protected String |
id |
protected String |
keepModeless |
protected String |
leftScroll |
protected String |
modeless |
protected String |
noMinimize |
protected String |
rightAligned |
protected String |
rightToLeft |
protected String |
systemModal |
protected String |
title |
protected String |
trackDiskSpace |
protected BigInteger |
width |
protected BigInteger |
x |
protected BigInteger |
y |
Constructor and Description |
---|
Dialog()
Default no-arg constructor
|
Dialog(List<Control> control,
String id,
BigInteger x,
BigInteger y,
BigInteger width,
BigInteger height,
String title,
String hidden,
String modeless,
String noMinimize,
String systemModal,
String keepModeless,
String trackDiskSpace,
String customPalette,
String rightToLeft,
String rightAligned,
String leftScroll,
String errorDialog)
Fully-initialising value constructor
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object that) |
List<Control> |
getControl()
Control elements belonging to this dialog.Gets the value of the control property.
|
String |
getCustomPalette()
Gets the value of the customPalette property.
|
String |
getErrorDialog()
Gets the value of the errorDialog property.
|
BigInteger |
getHeight()
Gets the value of the height property.
|
String |
getHidden()
Gets the value of the hidden property.
|
String |
getId()
Gets the value of the id property.
|
String |
getKeepModeless()
Gets the value of the keepModeless property.
|
String |
getLeftScroll()
Gets the value of the leftScroll property.
|
String |
getModeless()
Gets the value of the modeless property.
|
String |
getNoMinimize()
Gets the value of the noMinimize property.
|
String |
getRightAligned()
Gets the value of the rightAligned property.
|
String |
getRightToLeft()
Gets the value of the rightToLeft property.
|
String |
getSystemModal()
Gets the value of the systemModal property.
|
String |
getTitle()
Gets the value of the title property.
|
String |
getTrackDiskSpace()
Gets the value of the trackDiskSpace property.
|
BigInteger |
getWidth()
Gets the value of the width property.
|
BigInteger |
getX()
Gets the value of the x property.
|
BigInteger |
getY()
Gets the value of the y property.
|
int |
hashCode() |
void |
setCustomPalette(String value)
Sets the value of the customPalette property.
|
void |
setErrorDialog(String value)
Sets the value of the errorDialog property.
|
void |
setHeight(BigInteger value)
Sets the value of the height property.
|
void |
setHidden(String value)
Sets the value of the hidden property.
|
void |
setId(String value)
Sets the value of the id property.
|
void |
setKeepModeless(String value)
Sets the value of the keepModeless property.
|
void |
setLeftScroll(String value)
Sets the value of the leftScroll property.
|
void |
setModeless(String value)
Sets the value of the modeless property.
|
void |
setNoMinimize(String value)
Sets the value of the noMinimize property.
|
void |
setRightAligned(String value)
Sets the value of the rightAligned property.
|
void |
setRightToLeft(String value)
Sets the value of the rightToLeft property.
|
void |
setSystemModal(String value)
Sets the value of the systemModal property.
|
void |
setTitle(String value)
Sets the value of the title property.
|
void |
setTrackDiskSpace(String value)
Sets the value of the trackDiskSpace property.
|
void |
setWidth(BigInteger value)
Sets the value of the width property.
|
void |
setX(BigInteger value)
Sets the value of the x property.
|
void |
setY(BigInteger value)
Sets the value of the y property.
|
String |
toString() |
Dialog |
withControl(Collection<Control> values) |
Dialog |
withControl(Control... values) |
Dialog |
withCustomPalette(String value) |
Dialog |
withErrorDialog(String value) |
Dialog |
withHeight(BigInteger value) |
Dialog |
withHidden(String value) |
Dialog |
withId(String value) |
Dialog |
withKeepModeless(String value) |
Dialog |
withLeftScroll(String value) |
Dialog |
withModeless(String value) |
Dialog |
withNoMinimize(String value) |
Dialog |
withRightAligned(String value) |
Dialog |
withRightToLeft(String value) |
Dialog |
withSystemModal(String value) |
Dialog |
withTitle(String value) |
Dialog |
withTrackDiskSpace(String value) |
Dialog |
withWidth(BigInteger value) |
Dialog |
withX(BigInteger value) |
Dialog |
withY(BigInteger value) |
protected BigInteger x
protected BigInteger y
protected BigInteger width
protected BigInteger height
protected String noMinimize
protected String systemModal
protected String keepModeless
protected String trackDiskSpace
protected String customPalette
protected String rightToLeft
protected String rightAligned
protected String leftScroll
protected String errorDialog
public Dialog()
public Dialog(List<Control> control, String id, BigInteger x, BigInteger y, BigInteger width, BigInteger height, String title, String hidden, String modeless, String noMinimize, String systemModal, String keepModeless, String trackDiskSpace, String customPalette, String rightToLeft, String rightAligned, String leftScroll, String errorDialog)
public List<Control> getControl()
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 control property.
For example, to add a new item, do as follows:
getControl().add(newItem);
Objects of the following type(s) are allowed in the list
Control
public void setId(String value)
value
- allowed object is
String
public BigInteger getX()
BigInteger
public void setX(BigInteger value)
value
- allowed object is
BigInteger
public BigInteger getY()
BigInteger
public void setY(BigInteger value)
value
- allowed object is
BigInteger
public BigInteger getWidth()
BigInteger
public void setWidth(BigInteger value)
value
- allowed object is
BigInteger
public BigInteger getHeight()
BigInteger
public void setHeight(BigInteger value)
value
- allowed object is
BigInteger
public String getTitle()
String
public void setTitle(String value)
value
- allowed object is
String
public String getHidden()
String
public void setHidden(String value)
value
- allowed object is
String
public String getModeless()
String
public void setModeless(String value)
value
- allowed object is
String
public String getNoMinimize()
String
public void setNoMinimize(String value)
value
- allowed object is
String
public String getSystemModal()
String
public void setSystemModal(String value)
value
- allowed object is
String
public String getKeepModeless()
String
public void setKeepModeless(String value)
value
- allowed object is
String
public String getTrackDiskSpace()
String
public void setTrackDiskSpace(String value)
value
- allowed object is
String
public String getCustomPalette()
String
public void setCustomPalette(String value)
value
- allowed object is
String
public String getRightToLeft()
String
public void setRightToLeft(String value)
value
- allowed object is
String
public String getRightAligned()
String
public void setRightAligned(String value)
value
- allowed object is
String
public String getLeftScroll()
String
public void setLeftScroll(String value)
value
- allowed object is
String
public String getErrorDialog()
String
public void setErrorDialog(String value)
value
- allowed object is
String
public Dialog withControl(Control... values)
public Dialog withControl(Collection<Control> values)
public Dialog withX(BigInteger value)
public Dialog withY(BigInteger value)
public Dialog withWidth(BigInteger value)
public Dialog withHeight(BigInteger value)
public Dialog withHidden(String value)
public Dialog withModeless(String value)
public Dialog withNoMinimize(String value)
public Dialog withSystemModal(String value)
public Dialog withKeepModeless(String value)
public Dialog withTrackDiskSpace(String value)
public Dialog withCustomPalette(String value)
public Dialog withRightToLeft(String value)
public Dialog withRightAligned(String value)
public Dialog withLeftScroll(String value)
public Dialog withErrorDialog(String value)
Copyright © 2019. All rights reserved.