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

com.ja.smarkdown.javascript.PageScripts Maven / Gradle / Ivy

The newest version!
package com.ja.smarkdown.javascript;

import javax.enterprise.context.RequestScoped;
import javax.enterprise.event.Event;
import javax.inject.Inject;
import javax.inject.Named;

@Named
@RequestScoped
public class PageScripts {

	@Inject
	private Event events;

	public ScriptEvent getScripts() {
		ScriptEvent event = new ScriptEvent();
		events.fire(event);
		return event;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy