![JAR search and dependency download from the Maven repository](/logo.png)
com.ja.smarkdown.css.PageOutputStylesheets Maven / Gradle / Ivy
package com.ja.smarkdown.css;
import java.util.List;
import javax.enterprise.context.RequestScoped;
import javax.enterprise.event.Event;
import javax.inject.Inject;
import javax.inject.Named;
@Named
@RequestScoped
public class PageOutputStylesheets {
@Inject
private Event events;
public List getStylesheets() {
OutputStylesheetEvent event = new OutputStylesheetEvent();
events.fire(event);
System.out.println("####"+event.getOutputStylesheets());
return event.getOutputStylesheets();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy