コード例 #1
0
ファイル: LocalContext.java プロジェクト: sirinath/Javolution
 /**
  * Enters and returns a new local context instance.
  *
  * @return Reference to the entered LocalContext
  */
 public static LocalContext enter() {
   LocalContext ctx = current(LocalContext.class);
   if (ctx == null) { // Root.
     ctx = OSGiServices.getLocalContext();
   }
   return (LocalContext) ctx.enterInner();
 }