1 package org.apache.maven.profiles.activation; 2 3 import org.apache.maven.model.Profile; 4 5 20 21 public abstract class DetectedProfileActivator 22 implements ProfileActivator 23 { 24 public boolean canDetermineActivation( Profile profile ) 25 { 26 return canDetectActivation( profile ); 27 } 28 29 protected abstract boolean canDetectActivation( Profile profile ); 30 31 } 32 | Popular Tags |