Package org.jboss.util

Examples of org.jboss.util.NotImplementedException


      return Collections.emptySet();
   }
  
   public Controller getController()
   {
      throw new NotImplementedException("getController");
   }
View Full Code Here


      return null;
   }
  
   public Throwable getError()
   {
      throw new NotImplementedException("getError");
   }
View Full Code Here

      return ControllerState.INSTALLED;
   }

   public void setRequiredState(ControllerState state)
   {
      throw new NotImplementedException("setRequiredState");
   }
View Full Code Here

      return ControllerMode.MANUAL;
   }
  
   public void setMode(ControllerMode mode)
   {
      throw new NotImplementedException("setMode");
   }
View Full Code Here

      return ErrorHandlingMode.DISCARD;
   }

   public void install(ControllerState fromState, ControllerState toState) throws Throwable
   {
      throw new NotImplementedException("install");
   }
View Full Code Here

      throw new NotImplementedException("install");
   }

   public void setController(Controller controller)
   {
      throw new NotImplementedException("setController");
   }
View Full Code Here

      throw new NotImplementedException("setController");
   }

   public void setError(Throwable error)
   {
      throw new NotImplementedException("NYI setError");
   }
View Full Code Here

      throw new NotImplementedException("NYI setError");
   }

   public void uninstall(ControllerState fromState, ControllerState toState)
   {
      throw new NotImplementedException("uninstall");
   }
View Full Code Here

      return "ReadOnly!";
   }
  
   public void setReadOnly(String readOnly)
   {
      throw new NotImplementedException("THIS ATTRIBUTE SHOULD BE READ ONLY!");
   }
View Full Code Here

   // FIXME SORT THIS OUT, i.e. dependency that doesn't go through controller
  
   public Controller getController()
   {
      throw new NotImplementedException("getController");
   }
View Full Code Here

TOP

Related Classes of org.jboss.util.NotImplementedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.