コード例 #1
0
ファイル: GHCSystemLibrary.java プロジェクト: prark/eclipsefp
 public String getText() {
   ICompilerManager man = CompilerManager.getInstance();
   IHsImplementation impl = man.getCurrentHsImplementation();
   String name = UITexts.explorer_libraries_noimpl;
   if (impl != null) {
     name = impl.getName();
   }
   return NLS.bind(UITexts.explorer_libraries, name);
 }