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

public class PrintServiceImpl implements PrintService {
	@Override
	public void print(String message) {
		System.err.println(message);
	}
}

Back to the top