Class Bass

java.lang.Object
org.audiveris.proxymusic.Bass

public class Bass extends Object
The bass type is used to indicate a bass note in popular music chord symbols, e.g. G/C. It is generally not used in functional harmony, as inversion is generally not used in pop chord symbols. As with root, it is divided into step and alter elements, similar to pitches. The arrangement attribute specifies where the bass is displayed relative to what precedes it.

Java class for bass complex type.

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

 <complexType name="bass">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="bass-separator" type="{}style-text" minOccurs="0"/>
         <element name="bass-step" type="{}bass-step"/>
         <element name="bass-alter" type="{}harmony-alter" minOccurs="0"/>
       </sequence>
       <attribute name="arrangement" type="{}harmony-arrangement" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • Bass

      public Bass()
  • Method Details

    • getBassSeparator

      public StyleText getBassSeparator()
      Gets the value of the bassSeparator property.
      Returns:
      possible object is StyleText
    • setBassSeparator

      public void setBassSeparator(StyleText value)
      Sets the value of the bassSeparator property.
      Parameters:
      value - allowed object is StyleText
    • getBassStep

      public BassStep getBassStep()
      Gets the value of the bassStep property.
      Returns:
      possible object is BassStep
    • setBassStep

      public void setBassStep(BassStep value)
      Sets the value of the bassStep property.
      Parameters:
      value - allowed object is BassStep
    • getBassAlter

      public HarmonyAlter getBassAlter()
      Gets the value of the bassAlter property.
      Returns:
      possible object is HarmonyAlter
    • setBassAlter

      public void setBassAlter(HarmonyAlter value)
      Sets the value of the bassAlter property.
      Parameters:
      value - allowed object is HarmonyAlter
    • getArrangement

      public HarmonyArrangement getArrangement()
      Gets the value of the arrangement property.
      Returns:
      possible object is HarmonyArrangement
    • setArrangement

      public void setArrangement(HarmonyArrangement value)
      Sets the value of the arrangement property.
      Parameters:
      value - allowed object is HarmonyArrangement