/**
  * Test if auto label is enabled. Use associated <code>ContourLineAttribute</code> if it exists
  * otherwise always returns <code>true</code>.
  */
 public boolean isAutoLabel() {
   if (attr_ != null) {
     return attr_.isAutoLabel();
   } else {
     return true;
   }
 }