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

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