コード例 #1
0
 protected boolean hasSources() {
   for (LanguageSourceSet sourceSet : getSource()) {
     if (!sourceSet.getSource().isEmpty()) {
       return true;
     }
     if (sourceSet.hasBuildDependencies()) {
       return true;
     }
   }
   return false;
 }