This exception is used to help stub out implementations. @version $Revision: 1958 $ @author Jason Dillon
124125126127128129130
return Collections.emptySet(); } public Controller getController() { throw new NotImplementedException("getController"); }
144145146147148149150
return null; } public Throwable getError() { throw new NotImplementedException("getError"); }
167168169170171172173
return ControllerState.INSTALLED; } public void setRequiredState(ControllerState state) { throw new NotImplementedException("setRequiredState"); }
177178179180181182183
return ControllerMode.MANUAL; } public void setMode(ControllerMode mode) { throw new NotImplementedException("setMode"); }
187188189190191192193
return ErrorHandlingMode.DISCARD; } public void install(ControllerState fromState, ControllerState toState) throws Throwable { throw new NotImplementedException("install"); }
192193194195196197198
throw new NotImplementedException("install"); } public void setController(Controller controller) { throw new NotImplementedException("setController"); }
197198199200201202203
throw new NotImplementedException("setController"); } public void setError(Throwable error) { throw new NotImplementedException("NYI setError"); }
202203204205206207208
throw new NotImplementedException("NYI setError"); } public void uninstall(ControllerState fromState, ControllerState toState) { throw new NotImplementedException("uninstall"); }
549550551552553554555
return "ReadOnly!"; } public void setReadOnly(String readOnly) { throw new NotImplementedException("THIS ATTRIBUTE SHOULD BE READ ONLY!"); }
84858687888990
// FIXME SORT THIS OUT, i.e. dependency that doesn't go through controller public Controller getController() { throw new NotImplementedException("getController"); }