public void line(GenericIOClient<ImpSCServerConnection> impSCServerConnectionXGenericIOClient, String line) throws Exception
{
fCurrentCommand = line;
fLastCommandTime = System.currentTimeMillis();
SCCommand command = SCSetOfCommands.get(fCurrentCommand);
if ( fIsMonitorMode && (command != null) && !command.isMonitorCommand() )
{
command = null;
}
if ( command != null )
{
SCDataBuilder builder = command.newBuilder();
for ( SCDataBuilderTypeAndCount tc : command.getTypesAndCounts() )
{
switch ( tc.type )
{
case FIXED_SIZE_VALUE_SET:
{