本文整理了Java中org.eclipse.osgi.service.resolver.State.getChanges()
方法的一些代码示例,展示了State.getChanges()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。State.getChanges()
方法的具体详情如下:
包路径:org.eclipse.osgi.service.resolver.State
类名称:State
方法名:getChanges
[英]Returns the delta representing the changes from the time this state was first captured until now.
[中]返回表示从首次捕获此状态到现在的更改的增量。
代码示例来源:origin: org.eclipse/org.eclipse.osgi
public StateDelta getChanges() {
return target.getChanges();
}
代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.osgi
public StateDelta getChanges() {
return target.getChanges();
}
代码示例来源:origin: com.github.veithen.cosmos.bootstrap/org.eclipse.osgi.compatibility.state
public StateDelta getChanges() {
return platformAdmin.getSystemState().getChanges();
}
代码示例来源:origin: org.eclipse.platform/org.eclipse.osgi.compatibility.state
public StateDelta getChanges() {
return platformAdmin.getSystemState().getChanges();
}
代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.osgi
if (sameNames != null && sameNames.length > 1) {
if (addDeltas == null)
addDeltas = systemState.getChanges().getChanges(BundleDelta.ADDED, false);
for (int j = 0; j < sameNames.length; j++)
if (sameNames[j] != bundles[i]) {
内容来源于网络,如有侵权,请联系作者删除!