Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Vosburgh2015-12-24 15:56:12 +0000
committerBrian Vosburgh2015-12-24 16:21:50 +0000
commit67058e4e505ebb1973a566480d9ae5fed2acaa1b (patch)
tree00c00066c678f89df197cc6a262d1f7f72ed5edd /jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/internal/context/java/EclipseLinkJavaReadOnly.java
parentdb7d35dca519d8298ad632f457b0c360585ed324 (diff)
downloadwebtools.dali-67058e4e505ebb1973a566480d9ae5fed2acaa1b.tar.gz
webtools.dali-67058e4e505ebb1973a566480d9ae5fed2acaa1b.tar.xz
webtools.dali-67058e4e505ebb1973a566480d9ae5fed2acaa1b.zip
pass IProgressMonitor to
JpaContextModel.synchronizeWithResourceModel(...)
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/internal/context/java/EclipseLinkJavaReadOnly.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/internal/context/java/EclipseLinkJavaReadOnly.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/internal/context/java/EclipseLinkJavaReadOnly.java b/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/internal/context/java/EclipseLinkJavaReadOnly.java
index 903cca49ef..8abda9fab4 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/internal/context/java/EclipseLinkJavaReadOnly.java
+++ b/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/internal/context/java/EclipseLinkJavaReadOnly.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008, 2013 Oracle. All rights reserved.
+ * Copyright (c) 2008, 2015 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
@@ -9,6 +9,7 @@
******************************************************************************/
package org.eclipse.jpt.jpa.eclipselink.core.internal.context.java;
+import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jpt.common.core.resource.java.JavaResourceType;
import org.eclipse.jpt.common.core.utility.TextRange;
import org.eclipse.jpt.common.utility.internal.ObjectTools;
@@ -34,8 +35,8 @@ public class EclipseLinkJavaReadOnly
// ********** synchronize/update **********
@Override
- public void synchronizeWithResourceModel() {
- super.synchronizeWithResourceModel();
+ public void synchronizeWithResourceModel(IProgressMonitor monitor) {
+ super.synchronizeWithResourceModel(monitor);
this.setSpecifiedReadOnly_(this.buildSpecifiedReadOnly());
}

Back to the top