コード例 #1
0
 public MIInfo getMIInfo() throws MIException {
   MIInfo info = null;
   MIOutput out = getMIOutput();
   if (out != null) {
     info = new MIStackListFramesInfo(out);
     if (info.isError()) {
       throwMIException(info, out);
     }
   }
   return info;
 }
コード例 #2
0
ファイル: CLIInfoSharedLibrary.java プロジェクト: zhaog/cdt
 @Override
 public MIInfo getMIInfo() throws MIException {
   MIInfo info = null;
   MIOutput out = getMIOutput();
   if (out != null) {
     info = new CLIInfoSharedLibraryInfo(out);
     if (info.isError()) {
       throwMIException(info, out);
     }
   }
   return info;
 }