Here’s the Griddler.java:
package com.pic2griddler.awesomeness;
public class Griddler
{
public String id, status, name, diff, rate, info;
Griddler()
{
}
Griddler(String i, String s, String n, String d, String r, String in)
{
this.id = i;
this.status = s;
this.name = n;
this.diff = d;
this.rate = r;
this.info = in;
}
}
My screenshot isn’t working on Linux, so I’ve taken a picture of it: 
As you can see, on the side (I think this may hint to the solution), it shows no down arrow on the Griddler.java file.
Some things of importance:
- I’ve read what’s been recomended before (The Project->Source->Clean).
- I’ve followed many of the things outlined in similar questions, none has worked.
- I’ve restarted the computer.
- I’ve restarted Eclipse.
- I’ve deleted class files.
- I’ve taken the project out and imported it again.
- I haven’t started a new project and just copied my files over (I would like a different solution, but if none comes up, I will do this as a last resort).
I’m sure this is an easy problem, but I honestly can’t figure out how to solve it and don’t want to use the work around I’ve been using.
Try right clicking on the Griddler.java and selecting Build Path->Include. I suspect you inadvertently excluded the file from your build.