Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/JaxbNode.java')
-rw-r--r--jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/JaxbNode.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/JaxbNode.java b/jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/JaxbNode.java
index f2710a1d18..9d295cadd5 100644
--- a/jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/JaxbNode.java
+++ b/jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/JaxbNode.java
@@ -14,8 +14,8 @@ import org.eclipse.jpt.core.IResourcePart;
import org.eclipse.jpt.utility.model.Model;
/**
- * JPA-specific protocol. All JPA objects belong to a JPA project, are
- * associated with a resource, and have a parent (excepting the JPA project).
+ * JAXB-specific protocol. All JAXB objects belong to a JAXB project, are
+ * associated with a resource, and have a parent (excepting the JAXB project).
*
* Provisional API: This interface is part of an interim API that is still
* under development and expected to change significantly before reaching
@@ -38,4 +38,6 @@ public interface JaxbNode
* Return the JAXB node's parent. The JAXB project will not have a parent.
*/
JaxbNode getParent();
+
+ void stateChanged();
}

Back to the top