コード例 #1
0
 private String getLineDelimiter() {
   BundleInputContext inputContext = getBundleContext();
   if (inputContext != null) {
     return inputContext.getLineDelimiter();
   }
   return System.getProperty("line.separator"); // $NON-NLS-1$
 }
コード例 #2
0
 private IBundleModel getBundleModel() {
   BundleInputContext context = getBundleContext();
   return (context != null) ? (IBundleModel) context.getModel() : null;
 }