1 18 19 package org.objectweb.kilim.model.instanciation; 20 21 import org.objectweb.kilim.KilimException; 22 import org.objectweb.kilim.model.Component; 23 import org.objectweb.kilim.model.ComponentInterface; 24 import org.objectweb.kilim.model.ComponentSlot; 25 import org.objectweb.kilim.model.mapping.MappingContext; 26 29 30 public class NullInstanciationMger extends InstanciationMger { 31 32 35 public void initializeInstanciation(Component aComponent, ComponentInterface aInterface, MappingContext aContext) throws KilimException { } 36 37 40 public void finalizeInstanciation(Component aComponent, ComponentInterface aInterface, MappingContext aContext) throws KilimException { } 41 42 45 public void initializePlug(Component aComponent, ComponentSlot aSlot, MappingContext aContext) throws KilimException { } 46 47 50 public void finalizePlug(Component aComponent, ComponentSlot aSlot, MappingContext aContext) throws KilimException { } 51 } 52 | Popular Tags |