odps-sdk/odps-sdk-core/src/main/java/com/aliyun/odps/simpleframework/xml/core/ElementLabel.java [197:205]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   public String getName() throws Exception{
      if(name == null) {
         Style style = format.getStyle();
         String value = detail.getName();
        
         name = style.getElement(value);
      }
      return name;
   }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



odps-sdk/odps-sdk-core/src/main/java/com/aliyun/odps/simpleframework/xml/core/ElementListLabel.java [272:280]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   public String getName() throws Exception{
      if(name == null) {
         Style style = format.getStyle();
         String value = detail.getName();
         
         name = style.getElement(value);
      }
      return name;
   }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



