Home
last modified time | relevance | path

Searched refs:batchContainerInitializations (Results 1 – 3 of 3) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/
H A DJavaModelManager.java269 public int batchContainerInitializations = NO_BATCH_INITIALIZATION; field in JavaModelManager
2074 switch (this.batchContainerInitializations) { in forceBatchInitializations()
2076 this.batchContainerInitializations = NEED_BATCH_INITIALIZATION; in forceBatchInitializations()
2081 this.batchContainerInitializations = NEED_BATCH_INITIALIZATION; in forceBatchInitializations()
2087 private synchronized boolean batchContainerInitializations() { in batchContainerInitializations() method in JavaModelManager
2088 switch (this.batchContainerInitializations) { in batchContainerInitializations()
2090 this.batchContainerInitializations = BATCH_INITIALIZATION_IN_PROGRESS; in batchContainerInitializations()
2099 this.batchContainerInitializations = BATCH_INITIALIZATION_FINISHED; in batchInitializationFinished()
2107 if (batchContainerInitializations()) { in getClasspathContainer()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/model/
H A DClasspathInitializerTests.java811 …JavaModelManager.getJavaModelManager().batchContainerInitializations = JavaModelManager.NEED_BATCH… in testContainerInitializer17()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/model/org/eclipse/jdt/core/
H A DJavaCore.java4543 …while (manager.batchContainerInitializations == JavaModelManager.BATCH_INITIALIZATION_IN_PROGRESS)… in initializeAfterLoad()