In the Project Properties > PyDev - PYTHONPATH > Source Folders tab I have my Java source directory listed. However, when I try to run my Python file using right-click > Run As > Jython Run, I get "ImportError: cannot import name Person". This is a very simple Python script:
from com.entities import Person
person = Person()
print person.getFirstName()
I've read some people discuss creating a JAR of the Java application, and then referencing the JAR, but it seems pretty clear that I should be able to reference my source directory.
EDIT
So I just tested using a JAR reference containing my class and that worked. So why won't a source folder reference work?