leostiw
leostiw

Reputation: 1155

eclipse generates ._ files

How can I get rid of the files that eclipse auto-generates?

I have plenty of entites and i now have 2 files, that pretty sucks. How can I remove the files that eclipse generates?

This is how they look like:

@Generated(value="Dali", date="2013-09-04T15:41:47.243+0200")
@StaticMetamodel(CompanyArea.class)
public class CompanyArea_ {
       public static volatile SingularAttribute<CompanyArea, Long> id;
       public static volatile SingularAttribute<CompanyArea, String> name;
       public static volatile SetAttribute<CompanyArea, Division> divisions;
}

Upvotes: 2

Views: 790

Answers (1)

leostiw
leostiw

Reputation: 1155

Thank you guys for your help.

I was yesterday in a rush, and as I read my question again today, I realized that I was not very specific.

Your answers helped figuring out the solution.

I just set the Canonical Metamodel source folder to in the project properties - JPA.

Upvotes: 2

Related Questions