Class Defaults
Java class for defaults complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="defaults">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="scaling" type="{}scaling" minOccurs="0"/>
<element name="concert-score" type="{}empty" minOccurs="0"/>
<group ref="{}layout"/>
<element name="appearance" type="{}appearance" minOccurs="0"/>
<element name="music-font" type="{}empty-font" minOccurs="0"/>
<element name="word-font" type="{}empty-font" minOccurs="0"/>
<element name="lyric-font" type="{}lyric-font" maxOccurs="unbounded" minOccurs="0"/>
<element name="lyric-language" type="{}lyric-language" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Appearanceprotected Emptyprotected List<LyricLanguage>protected EmptyFontprotected PageLayoutprotected Scalingprotected List<StaffLayout>protected SystemLayoutprotected EmptyFont -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the appearance property.Gets the value of the concertScore property.Gets the value of the lyricFont property.Gets the value of the lyricLanguage property.Gets the value of the musicFont property.Gets the value of the pageLayout property.Gets the value of the scaling property.Gets the value of the staffLayout property.Gets the value of the systemLayout property.Gets the value of the wordFont property.voidsetAppearance(Appearance value) Sets the value of the appearance property.voidsetConcertScore(Empty value) Sets the value of the concertScore property.voidsetMusicFont(EmptyFont value) Sets the value of the musicFont property.voidsetPageLayout(PageLayout value) Sets the value of the pageLayout property.voidsetScaling(Scaling value) Sets the value of the scaling property.voidsetSystemLayout(SystemLayout value) Sets the value of the systemLayout property.voidsetWordFont(EmptyFont value) Sets the value of the wordFont property.
-
Field Details
-
scaling
-
concertScore
-
pageLayout
-
systemLayout
-
staffLayout
-
appearance
-
musicFont
-
wordFont
-
lyricFont
-
lyricLanguage
-
-
Constructor Details
-
Defaults
public Defaults()
-
-
Method Details
-
getScaling
Gets the value of the scaling property.- Returns:
- possible object is
Scaling
-
setScaling
Sets the value of the scaling property.- Parameters:
value- allowed object isScaling
-
getConcertScore
Gets the value of the concertScore property.- Returns:
- possible object is
Empty
-
setConcertScore
Sets the value of the concertScore property.- Parameters:
value- allowed object isEmpty
-
getPageLayout
Gets the value of the pageLayout property.- Returns:
- possible object is
PageLayout
-
setPageLayout
Sets the value of the pageLayout property.- Parameters:
value- allowed object isPageLayout
-
getSystemLayout
Gets the value of the systemLayout property.- Returns:
- possible object is
SystemLayout
-
setSystemLayout
Sets the value of the systemLayout property.- Parameters:
value- allowed object isSystemLayout
-
getStaffLayout
Gets the value of the staffLayout 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
setmethod for the staffLayout property.For example, to add a new item, do as follows:
getStaffLayout().add(newItem);Objects of the following type(s) are allowed in the list
StaffLayout -
getAppearance
Gets the value of the appearance property.- Returns:
- possible object is
Appearance
-
setAppearance
Sets the value of the appearance property.- Parameters:
value- allowed object isAppearance
-
getMusicFont
Gets the value of the musicFont property.- Returns:
- possible object is
EmptyFont
-
setMusicFont
Sets the value of the musicFont property.- Parameters:
value- allowed object isEmptyFont
-
getWordFont
Gets the value of the wordFont property.- Returns:
- possible object is
EmptyFont
-
setWordFont
Sets the value of the wordFont property.- Parameters:
value- allowed object isEmptyFont
-
getLyricFont
Gets the value of the lyricFont 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
setmethod for the lyricFont property.For example, to add a new item, do as follows:
getLyricFont().add(newItem);Objects of the following type(s) are allowed in the list
LyricFont -
getLyricLanguage
Gets the value of the lyricLanguage 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
setmethod for the lyricLanguage property.For example, to add a new item, do as follows:
getLyricLanguage().add(newItem);Objects of the following type(s) are allowed in the list
LyricLanguage
-