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

org.datafx.controller.injection.provider.ViewContextProvider Maven / Gradle / Ivy

There is a newer version: 8.0b5
Show newest version
package org.datafx.controller.injection.provider;

import org.datafx.controller.context.ViewContext;
import org.datafx.controller.injection.ViewScoped;

public class ViewContextProvider implements ContextProvider{

    @Override
    public Class supportedAnnotation() {
        return ViewScoped.class;
    }

    @Override
    public ViewContext getContext(ViewContext viewContext) {
        return viewContext;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy