Package com.cathive.fx.cdi

Source Code of com.cathive.fx.cdi.WeldApplication

/*
* Copyright (C) 2013,2014 The Cat Hive Developers.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.cathive.fx.cdi;

import org.jboss.weld.environment.se.Weld;

import javax.enterprise.inject.spi.CDI;
import java.util.logging.Level;
import java.util.logging.Logger;

/**
* This class should be extended if you plan to use WELD SE as CDI provider for your
* JavaFX applications.
* @author Benjamin P. Jung
* @since 1.0.0
*/
public abstract class WeldApplication extends CdiApplication {

    /** Logger for this instance. */
    private final Logger logger = Logger.getLogger(this.getClass().getName());

    /**
     * JBoss WELD instance to be used for all CDI-related operations.
     * <p>This field will be populated during invocation of the {@link #init()}-method.</p>
     */
    private Weld weld;

    @Override
    public void init() throws Exception {

        super.init();

        logger.log(Level.INFO, "Initializing JBoss WELD...");
        this.weld = new Weld();
        this.weld.initialize();

    }

}
TOP

Related Classes of com.cathive.fx.cdi.WeldApplication

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.