Package org.itsnat.comp

Examples of org.itsnat.comp.CreateItsNatComponentListener


        // mientras no se modifique concurrentemente la lista, esto no deber�a
        // ocurrir, el usuario debe registrar sus CreateItsNatComponentListener
        // en tiempo de creaci�n del template (init() del Servlet).
        while(it.hasNext())
        {
            CreateItsNatComponentListener listener = it.next();
            comp = listener.before(node,componentType,artifacts,this);
            if (comp != null)
                break;
        }

        return comp;
View Full Code Here


        // que ser�n instanciados cuando sea llamado este m�todo
        // incluso podr�a substituir a los que hay por defecto segun el nodo
        // Ver m�s arriba la llamada a beforeRender()
        while(it.hasNext())
        {
            CreateItsNatComponentListener listener = it.next();
            comp = listener.after(comp);
            if (comp == null)
                return null; // Componente rechazado
        }
        return comp;
    }
View Full Code Here

TOP

Related Classes of org.itsnat.comp.CreateItsNatComponentListener

Copyright © 2018 www.massapicom. 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.