You need to make your constructor public so other packages can access it:
public class Sticker
{
private String note;
public Sticker(String note)
{
this.note = note;
}
// ... etc
I would recommend going to The Java Tutorials[^] and working through them.