Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7bcd9ab906aed70ffe07399c483125de92d30ffe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package org.eclipse.fx.code.compensator.project.jdt.tb;

import org.eclipse.fx.code.compensator.project.ProjectService.ToolbarElement;

public class NewModuleElement extends ToolbarElement {

	public NewModuleElement() {
		super("new-java-module", "Create a new module","org.eclipse.fx.code.compensator.project.jdt.command.newmodule");
	}

}

Back to the top