Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 17 18 19 package org.apache.catalina; 20 21 22 import java.beans.PropertyChangeListener ; 23 24 25 55 56 public interface Loader { 57 58 59 61 62 67 public void backgroundProcess(); 68 69 70 73 public ClassLoader getClassLoader(); 74 75 76 79 public Container getContainer(); 80 81 82 87 public void setContainer(Container container); 88 89 90 94 public boolean getDelegate(); 95 96 97 103 public void setDelegate(boolean delegate); 104 105 106 111 public String getInfo(); 112 113 114 117 public boolean getReloadable(); 118 119 120 125 public void setReloadable(boolean reloadable); 126 127 128 130 131 136 public void addPropertyChangeListener(PropertyChangeListener listener); 137 138 139 144 public void addRepository(String repository); 145 146 147 151 public String [] findRepositories(); 152 153 154 158 public boolean modified(); 159 160 161 166 public void removePropertyChangeListener(PropertyChangeListener listener); 167 168 169 } 170
| Popular Tags
|