1 22 package org.objectweb.petals.jbi.management.autoload; 23 24 import java.io.File ; 25 import java.util.List ; 26 27 32 public class AutoLoaderImplMock extends AutoLoaderImpl { 33 34 private boolean installed; 35 36 private boolean uninstalled; 37 38 public void install(File [] newInstallers) { 39 installed = true; 40 } 41 42 public boolean isInstalled() { 43 return installed; 44 } 45 46 public void uninstall(List <File > filesToUninstall) { 47 uninstalled = true; 48 } 49 50 public boolean isUninstalled() { 51 return uninstalled; 52 } 53 54 } 55 | Popular Tags |