All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xworker.swt.actions.AppendTextExample Maven / Gradle / Ivy

package xworker.swt.actions;

import org.eclipse.swt.custom.StyledText;
import org.xmeta.ActionContext;

public class AppendTextExample {
	public static void run(ActionContext actionContext){
		StyledText text = (StyledText) actionContext.get("text");
		text.append("\nHello World!");
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy