public static void RemoveRhythm(this IAttVerseLog e)
 {
     MeiAtt_controller.RemoveAttribute(e, "rhythm");
 }
 public static string GetRhythmValue(this IAttVerseLog e)
 {
     return(MeiAtt_controller.GetAttributeValue(e, "rhythm"));
 }
 public static bool HasRhythm(this IAttVerseLog e)
 {
     return(MeiAtt_controller.HasAttribute(e, "rhythm"));
 }
 public static void SetRhythm(this IAttVerseLog e, string _val)
 {
     MeiAtt_controller.SetAttribute(e, "rhythm", _val);
 }
 public static XAttribute GetRhythmAttribute(this IAttVerseLog e)
 {
     return(MeiAtt_controller.GetAttribute(e, "rhythm"));
 }
 public static void RemoveRefrain(this IAttVerseLog e)
 {
     MeiAtt_controller.RemoveAttribute(e, "refrain");
 }
 public static bool HasRefrain(this IAttVerseLog e)
 {
     return(MeiAtt_controller.HasAttribute(e, "refrain"));
 }
 public static string GetRefrainValue(this IAttVerseLog e)
 {
     return(MeiAtt_controller.GetAttributeValue(e, "refrain"));
 }
 public static XAttribute GetRefrainAttribute(this IAttVerseLog e)
 {
     return(MeiAtt_controller.GetAttribute(e, "refrain"));
 }
 public static void SetRefrain(this IAttVerseLog e, string _val)
 {
     MeiAtt_controller.SetAttribute(e, "refrain", _val);
 }