1 15 package org.apache.hivemind.internal; 16 17 import org.apache.hivemind.definition.ImplementationConstructionContext; 18 19 24 public class ImplementationConstructionContextImpl extends AbstractConstructionContext implements 25 ImplementationConstructionContext 26 { 27 private ServicePoint _servicePoint; 28 29 public ImplementationConstructionContextImpl(Module definingModule, ServicePoint servicePoint) 30 { 31 super(definingModule); 32 _servicePoint = servicePoint; 33 } 34 35 public ServicePoint getServicePoint() 36 { 37 return _servicePoint; 38 } 39 } 40 | Popular Tags |