コード例 #1
0
ファイル: BundleImpl.cs プロジェクト: fysxm/golion
        public BundleImpl(FrameworkImpl framework, String bundleDirectoryPath)
        {
            this.framework              = framework;
            this.bundleDirectoryPath    = bundleDirectoryPath;
            this.bundleAssemblyFileName = Path.Combine(bundleDirectoryPath, BUNDLE_FILE_NAME);

            init();
            //初始化
            bundleContext = new BundleContextImpl(framework, this);
        }
コード例 #2
0
 public ServiceRegistrationImpl(FrameworkImpl framework, BundleContextImpl bundleContext, ServiceReferenceImpl reference)
 {
     this.framework     = framework;
     this.bundleContext = bundleContext;
     this.reference     = reference;
 }
コード例 #3
0
ファイル: BundleContextImpl.cs プロジェクト: fysxm/golion
 public BundleContextImpl(FrameworkImpl framework, Bundle bundle)
 {
     this.framework = framework;
     this.bundle    = bundle;
 }