I'm new to Eclipse 4 RCP and just learning the basics. I created a part and gave it a class URI. For some reason the class's constructor isn't being called. What could be the reason?
PlaygroundPart code:
package com.example.e4.rcp.todo.parts;
public class PlaygroundPart {
public PlaygroundPart() {
System.out.print("Example");
}
}
Nothing is printed in the console.