Skip to main content
summaryrefslogtreecommitdiffstats
blob: ffa35211fd443a2cc49db2112d046de1fa3fe45c (plain) (blame)
1
2
3
4
5
package org.eclipse.fx.demo.osgi.di;

public interface PrintService {
	public void print(String message);
}

Back to the top