Examples of getEnvObsForStateInterface


Examples of rlVizLib.messaging.interfaces.getEnvObsForStateInterface

  }

  @Override
  public String handleAutomatically(EnvironmentInterface theEnvironment) {
    Vector<Observation> theObservations= new Vector<Observation>();
    getEnvObsForStateInterface castedEnv=(getEnvObsForStateInterface)theEnvironment;
   
    for(int i=0;i<theRequestStates.size();i++){
      Observation thisObs=castedEnv.getObservationForState(theRequestStates.get(i));
      theObservations.add(thisObs);
    }

    EnvObsForStateResponse theResponse = new EnvObsForStateResponse(theObservations);
    return theResponse.makeStringResponse();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.