/**
  * Get dash array. Use associated <code>ContourLineAttribute</code> if it exists and has
  * dashArrayOverrideen set to <code>false</code>.
  */
 public float[] getDashArray() {
   if (attr_ != null && attr_.isDashArrayOverridden()) {
     return attr_.getDashArray();
   } else {
     return super.getDashArray();
   }
 }