Out of sync error: source file file:/C:/Documents%20and%20Settings/michael/My%20Documents/NetBeansProjects/eBill/eBill-ejb/src/java/il/co/beeriprint/ebill/entity/PdfResourceBundleRecord.java ----- Element: ------------------------------------------------------- kind: FIELD, bundleId ----- Tree: ------------------------------------------------------- kind: VARIABLE private Long bundleId ----- Offset: ------------------------------------------------------- offset: 711 ----- Token sequence: ---------------------------------------- TokenSequence for text/x-java/text/x-javadoc at tokenIndex=0. TokenList contains 1 tokens: *[0]: " " <708,710> OTHER_TEXT[5] DefT, IHC=972346 ----- Doc instance: ------------------------------------------------------- class: class org.netbeans.modules.java.source.JavadocEnv$JavadocField, toString: il.co.beeriprint.ebill.entity.PdfResourceBundleRecord.bundleId, raw text:'' ----- Stack trace: --------------------------------------------- java.lang.IllegalStateException at org.netbeans.modules.java.editor.javadoc.JavadocCompletionUtils.dumpOutOfSyncError(JavadocCompletionUtils.java:464) at org.netbeans.modules.java.editor.javadoc.JavadocCompletionUtils.findJavadoc(JavadocCompletionUtils.java:185) at org.netbeans.modules.java.editor.javadoc.JavadocImports.findReferencedElement(JavadocImports.java:242) at org.netbeans.modules.java.editor.semantic.MarkOccurrencesHighlighter.processImpl(MarkOccurrencesHighlighter.java:372) at org.netbeans.modules.java.editor.semantic.MarkOccurrencesHighlighter.run(MarkOccurrencesHighlighter.java:153) at org.netbeans.modules.parsing.impl.TaskProcessor$CompilationJob.run(TaskProcessor.java:690) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) at java.util.concurrent.FutureTask.run(FutureTask.java:138) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) at java.lang.Thread.run(Thread.java:619) ----- Source file content/snapshot: ---------------------------------------- /* * (C) Beeriprint, 2009 * */ package il.co.beeriprint.ebill.entity; import java.io.Serializable; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; /** * A starting point for the PDF "dresser" to know where to take the resources from, and which PDF manipulation implementation to use. * Actual decision might vary according to the PDF manipulation technology. * @author michael */ @Entity public class PdfResourceBundleRecord implements Serializable { /** The system's id of this record */ private Long id; /** Name of the archiving system, use the version the PAT classes. */ private String factoryClassName; /** */ private Long bundleId; @Id @GeneratedValue public Long getId() { return id; } public Long getBundleId() { return bundleId; } public void setBundleId(Long bundleId) { this.bundleId = bundleId; } public void setId(Long anId) { id = anId; } public String getFactoryClassName() { return factoryClassName; } public void setFactoryClassName(String aFactoryClassName) { factoryClassName = aFactoryClassName; } @Override public boolean equals(Object obj) { if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } final PdfResourceBundleRecord other = (PdfResourceBundleRecord) obj; if ((this.factoryClassName == null) ? (other.factoryClassName != null) : !this.factoryClassName.equals(other.factoryClassName)) { return false; } return true; } @Override public int hashCode() { int hash = 3; hash = 83 * hash + (this.factoryClassName != null ? this.factoryClassName.hashCode() : 0); return hash; } } ----- Document content: ---------------------------------------- /* * (C) Beeriprint, 2009 * */ package il.co.beeriprint.ebill.entity; import java.io.Serializable; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; /** * A starting point for the PDF "dresser" to know where to take the resources from, and which PDF manipulation implementation to use. * Actual decision might vary according to the PDF manipulation technology. * @author michael */ @Entity public class PdfResourceBundleRecord implements Serializable { /** The system's id of this record */ private Long id; /** Name of the archiving system, use the version the PAT classes. */ private String factoryClassName; /** */ private Long bundleId; @Id @GeneratedValue public Long getId() { return id; } public Long getBundleId() { return bundleId; } public void setBundleId(Long bundleId) { this.bundleId = bundleId; } public void setId(Long anId) { id = anId; } public String getFactoryClassName() { return factoryClassName; } public void setFactoryClassName(String aFactoryClassName) { factoryClassName = aFactoryClassName; } @Override public boolean equals(Object obj) { if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } final PdfResourceBundleRecord other = (PdfResourceBundleRecord) obj; if ((this.factoryClassName == null) ? (other.factoryClassName != null) : !this.factoryClassName.equals(other.factoryClassName)) { return false; } return true; } @Override public int hashCode() { int hash = 3; hash = 83 * hash + (this.factoryClassName != null ? this.factoryClassName.hashCode() : 0); return hash; } }