(function(){
'use strict';
angular.module('gantt.tree').directive('ganttRowTreeLabel', ['GanttDirectiveBuilder', function(Builder) {
var builder = new Builder('ganttRowTreeLabel');
builder.restrict = 'A';
builder.templateUrl = undefined;
return builder.build();
}]);
}());