Examples of HasAVisualizerInterface


Examples of rlVizLib.messaging.interfaces.HasAVisualizerInterface

    return theResponse;
  }

  @Override
  public String handleAutomatically(EnvironmentInterface theEnvironment) {
    HasAVisualizerInterface castedEnv = (HasAVisualizerInterface)theEnvironment;
    EnvVisualizerNameResponse theResponse=new EnvVisualizerNameResponse(castedEnv.getVisualizerClassName());
    return theResponse.makeStringResponse();
  }
View Full Code Here

Examples of rlVizLib.messaging.interfaces.HasAVisualizerInterface

    return theResponse;
  }

  @Override
  public String handleAutomatically(AgentInterface theAgent) {
    HasAVisualizerInterface castedAgent = (HasAVisualizerInterface)theAgent;
    AgentVisualizerNameResponse theResponse=new AgentVisualizerNameResponse(castedAgent.getVisualizerClassName());
    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.