本文整理汇总了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;
}
示例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();
}
示例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();
}
}
示例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;
}
示例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;
}
示例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;
}