Class FrameNote

java.lang.Object
org.audiveris.proxymusic.FrameNote

public class FrameNote extends Object
The frame-note type represents each note included in the frame. An open string will have a fret value of 0, while a muted string will not be associated with a frame-note element.

Java class for frame-note complex type.

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

 <complexType name="frame-note">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="string" type="{}string"/>
         <element name="fret" type="{}fret"/>
         <element name="fingering" type="{}fingering" minOccurs="0"/>
         <element name="barre" type="{}barre" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

    • string

      protected String string
    • fret

      protected Fret fret
    • fingering

      protected Fingering fingering
    • barre

      protected Barre barre
  • Constructor Details

    • FrameNote

      public FrameNote()
  • Method Details

    • getString

      public String getString()
      Gets the value of the string property.
      Returns:
      possible object is String
    • setString

      public void setString(String value)
      Sets the value of the string property.
      Parameters:
      value - allowed object is String
    • getFret

      public Fret getFret()
      Gets the value of the fret property.
      Returns:
      possible object is Fret
    • setFret

      public void setFret(Fret value)
      Sets the value of the fret property.
      Parameters:
      value - allowed object is Fret
    • getFingering

      public Fingering getFingering()
      Gets the value of the fingering property.
      Returns:
      possible object is Fingering
    • setFingering

      public void setFingering(Fingering value)
      Sets the value of the fingering property.
      Parameters:
      value - allowed object is Fingering
    • getBarre

      public Barre getBarre()
      Gets the value of the barre property.
      Returns:
      possible object is Barre
    • setBarre

      public void setBarre(Barre value)
      Sets the value of the barre property.
      Parameters:
      value - allowed object is Barre