当前位置: 首页>>代码示例>>Java>>正文


Java BundleContext.getProperty方法代码示例

本文整理汇总了Java中org.osgi.framework.BundleContext.getProperty方法的典型用法代码示例。如果您正苦于以下问题:Java BundleContext.getProperty方法的具体用法?Java BundleContext.getProperty怎么用?Java BundleContext.getProperty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.osgi.framework.BundleContext的用法示例。


在下文中一共展示了BundleContext.getProperty方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: determinePlatform

import org.osgi.framework.BundleContext; //导入方法依赖的package包/类
private static boolean determinePlatform(BundleContext context, String[] labels) {
	Assert.notNull(context);
	Assert.notNull(labels);

	String vendorProperty = context.getProperty(Constants.FRAMEWORK_VENDOR);
	if (vendorProperty == null) {
		return false; // might be running outside of container
	} else {
		// code defensively here to allow for variation in vendor name over
		// time
		if (containsAnyOf(vendorProperty, labels)) {
			return true;
		}
	}
	return false;
}
 
开发者ID:eclipse,项目名称:gemini.blueprint,代码行数:17,代码来源:OsgiPlatformDetector.java

示例2: getPlatformName

import org.osgi.framework.BundleContext; //导入方法依赖的package包/类
public static String getPlatformName(BundleContext bundleContext) {
	String vendorProperty = bundleContext.getProperty(Constants.FRAMEWORK_VENDOR);
	String frameworkVersion = bundleContext.getProperty(Constants.FRAMEWORK_VERSION);

	// get system bundle
	Bundle bundle = bundleContext.getBundle(0);
	String name = (String) bundle.getHeaders().get(Constants.BUNDLE_NAME);
	String version = (String) bundle.getHeaders().get(Constants.BUNDLE_VERSION);
	String symName = bundle.getSymbolicName();

	StringBuilder buf = new StringBuilder();
	buf.append(name);
	buf.append(" ");
	buf.append(symName);
	buf.append("|");
	buf.append(version);
	buf.append("{");
	buf.append(frameworkVersion);
	buf.append(" ");
	buf.append(vendorProperty);
	buf.append("}");

	return buf.toString();
}
 
开发者ID:eclipse,项目名称:gemini.blueprint,代码行数:25,代码来源:OsgiUtils.java

示例3: start

import org.osgi.framework.BundleContext; //导入方法依赖的package包/类
public @Override void start(final BundleContext context) throws Exception {
        if (System.getProperty("netbeans.home") != null) {
            throw new IllegalStateException("Should not be run from inside regular NetBeans module system");
        }
        String storage = context.getProperty(Constants.FRAMEWORK_STORAGE);
        if (storage != null) {
            System.setProperty("netbeans.user", storage);
        }
        System.setProperty("TopSecurityManager.disable", "true");
        NbBundle.setBranding(System.getProperty("branding.token"));
        OSGiMainLookup.initialize(context);
        queue = new DependencyQueue<String,Bundle>();
        this.context = context;
        framework = ((Framework) context.getBundle(0));
        if (framework.getState() == Bundle.STARTING) {
            LOG.fine("framework still starting");
            final AtomicReference<FrameworkListener> frameworkListener = new AtomicReference<FrameworkListener>();
            frameworkListener.set(new FrameworkListener() {
                public @Override void frameworkEvent(FrameworkEvent event) {
                    if (event.getType() == FrameworkEvent.STARTED) {
//                        System.err.println("framework started");
                        context.removeFrameworkListener(frameworkListener.get());
                        context.addBundleListener(Activator.this);
                        processLoadedBundles();
                    }
                }
            });
            context.addFrameworkListener(frameworkListener.get());
        } else {
            LOG.fine("framework already started");
            context.addBundleListener(this);
            processLoadedBundles();
        }
    }
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:35,代码来源:Activator.java

示例4: IndexingJob

import org.osgi.framework.BundleContext; //导入方法依赖的package包/类
public IndexingJob(OntoNetHubSiteManager siteManager, String ontologyName, String ontologyDescription, String baseURI, Model data, BundleContext ctx, TcManager tcManager, File ontologiesFolder) {
	this.siteManager = siteManager;
	this.ontologyName = ontologyName;
	this.ontologyDescription = ontologyDescription;
	this.baseURI = baseURI;
	this.data = data;
	this.ctx = ctx;
	this.stanbolHome = ctx.getProperty("stanbol.home");
	this.tcManager = tcManager;
	this.ontologiesFolder = ontologiesFolder;
	
}
 
开发者ID:teamdigitale,项目名称:ontonethub,代码行数:13,代码来源:IndexingJob.java

示例5: RDFIndexingJob

import org.osgi.framework.BundleContext; //导入方法依赖的package包/类
public RDFIndexingJob(String ontologyName, String ontologyDescription, String baseURI, Model data, BundleContext ctx, TcManager tcManager, File ontologiesFolder) {
	this.ontologyName = ontologyName;
	this.ontologyDescription = ontologyDescription;
	this.baseURI = baseURI;
	this.data = data;
	this.ctx = ctx;
	this.stanbolHome = ctx.getProperty("stanbol.home");
	this.tcManager = tcManager;
	this.ontologiesFolder = ontologiesFolder;
	
}
 
开发者ID:teamdigitale,项目名称:ontonethub,代码行数:12,代码来源:RDFIndexingJob.java

示例6: isPlatformVendorMatch

import org.osgi.framework.BundleContext; //导入方法依赖的package包/类
private static boolean isPlatformVendorMatch(BundleContext bundleContext, String vendorString) {
	String vendor = bundleContext.getProperty(Constants.FRAMEWORK_VENDOR);
	if (vendor != null)
		return vendor.indexOf(vendorString) >= -1;
	return false;
}
 
开发者ID:eclipse,项目名称:gemini.blueprint,代码行数:7,代码来源:OsgiUtils.java


注:本文中的org.osgi.framework.BundleContext.getProperty方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。