Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.compare.ide/src/org/eclipse/emf/compare/ide/internal/utils/NotifyingParserPool.java')
-rw-r--r--plugins/org.eclipse.emf.compare.ide/src/org/eclipse/emf/compare/ide/internal/utils/NotifyingParserPool.java13
1 files changed, 7 insertions, 6 deletions
diff --git a/plugins/org.eclipse.emf.compare.ide/src/org/eclipse/emf/compare/ide/internal/utils/NotifyingParserPool.java b/plugins/org.eclipse.emf.compare.ide/src/org/eclipse/emf/compare/ide/internal/utils/NotifyingParserPool.java
index 8f550ab11..66b54efe7 100644
--- a/plugins/org.eclipse.emf.compare.ide/src/org/eclipse/emf/compare/ide/internal/utils/NotifyingParserPool.java
+++ b/plugins/org.eclipse.emf.compare.ide/src/org/eclipse/emf/compare/ide/internal/utils/NotifyingParserPool.java
@@ -175,7 +175,7 @@ public class NotifyingParserPool extends XMLParserPoolImpl {
* @param delegate
* The delegate handler.
*/
- public NamespaceDeclarationNotifyingXMLDefaultHandler(XMLDefaultHandler delegate) {
+ NamespaceDeclarationNotifyingXMLDefaultHandler(XMLDefaultHandler delegate) {
super(delegate);
this.namespaceDeclarationListeners = new ListenerList();
}
@@ -278,7 +278,7 @@ public class NotifyingParserPool extends XMLParserPoolImpl {
* @param containmentOnly
* Only set containment reference values.
*/
- public NotifyingXMLHelper(XMLHelper delegate, boolean containmentOnly) {
+ NotifyingXMLHelper(XMLHelper delegate, boolean containmentOnly) {
super(delegate);
this.proxyListeners = new ListenerList();
this.containmentOnly = containmentOnly;
@@ -293,7 +293,8 @@ public class NotifyingParserPool extends XMLParserPoolImpl {
super.setValue(eObject, eStructuralFeature, value, position);
}
if (value instanceof EObject) {
- final ProxyEntry entry = new ProxyEntry(eObject, eStructuralFeature, (EObject)value, position);
+ final ProxyEntry entry = new ProxyEntry(eObject, eStructuralFeature, (EObject)value,
+ position);
if (((EObject)value).eIsProxy()) {
notifyProxy(entry);
} else if (!isContainment) {
@@ -351,8 +352,8 @@ public class NotifyingParserPool extends XMLParserPoolImpl {
*/
private void notifyProxy(ProxyEntry proxy) {
for (Object listener : proxyListeners.getListeners()) {
- ((IProxyCreationListener)listener).proxyCreated(getResource(), proxy.getEObject(), proxy
- .getFeature(), proxy.getValue(), proxy.getPosition());
+ ((IProxyCreationListener)listener).proxyCreated(getResource(), proxy.getEObject(),
+ proxy.getFeature(), proxy.getValue(), proxy.getPosition());
}
}
@@ -393,7 +394,7 @@ public class NotifyingParserPool extends XMLParserPoolImpl {
* @param position
* see {@link #position}.
*/
- public ProxyEntry(EObject eObject, EStructuralFeature feature, EObject value, int position) {
+ ProxyEntry(EObject eObject, EStructuralFeature feature, EObject value, int position) {
this.eObject = eObject;
this.feature = feature;
this.value = value;

Back to the top