Examples of InfoMessage


Examples of de.tfh.pdvl.hp.protocol.InfoMessage

  }
       
 
 
  private void executeQuery() throws ParentException  {
      InfoMessage info = new InfoMessage();
      info.setWaveShape(
              sendQueryStringMessage("SOURCE:FUNCTION:SHAPE")
      );
      info.setFrequency((int)Math.round(
              sendQueryValueMessage("SOURCE:FREQUENCY")
      ));
      info.setAmplitude(
              sendQueryValueMessage("SOURCE:VOLTAGE")
      );
      info.setOffset(
              sendQueryValueMessage("SOURCE:VOLTAGE:OFFSET")
      );
      SerialServer.getInstance().setReturnMessage(info);
  }
View Full Code Here

Examples of edu.harvard.hul.ois.jhove.InfoMessage

    // Compression
    tmp = readUnsignedByte(inputStream, this);
    chcks.update((byte)tmp);

    if (tmp!=0) {
      repInfo.setMessage(new InfoMessage("Attenzione, tipo di compressine " +
                         tmp + " not conforme alla raccommandazione del W3C."));
    }


    // filtering
    tmp = readUnsignedByte(inputStream, this);
    chcks.update((byte)tmp);

    if (tmp!=0) {
      repInfo.setMessage(new InfoMessage("Attenzione, tipo di filtro " +
                         tmp + " no ancora standardizzato dal W3C."));
    }

    // interlace

    tmp = readUnsignedByte(inputStream, this);
    chcks.update((byte)tmp);

    if (tmp!=0 && tmp!=1) {
      repInfo.setMessage(new InfoMessage("Attenzione, tipo di interlacciamento " +
                         tmp + " no ancora standardizzato dal W3C."));
    }

    long crc32 = readUnsignedInt(inputStream, PNG_ENDIANITY, this);
View Full Code Here

Examples of edu.harvard.hul.ois.jhove.InfoMessage

         */
        if (mnfe.size != 0) {
          StringBuffer tmp = new StringBuffer("Warning, part ");
          tmp.append(mnfe.fullPath);
          tmp.append(" is encrypted, validation skipped.");
          repInfo.setMessage(new InfoMessage(tmp.toString()));
        }
        else if (mimeTypeMap.get(mnfe.mediaType) != null &&
             ! mnfe.fullPath.equals(SKIP_ROOT)) {
          String subDocName;
          int idxof = mnfe.fullPath.indexOf("/");
View Full Code Here

Examples of org.apache.geronimo.console.message.InfoMessage

            break;
        case Warn:
            messages.add(new WarnMessage(abbr, detail));
            break;
        case Info:
            messages.add(new InfoMessage(abbr, detail));
            break;
        }
    }
View Full Code Here

Examples of org.apache.geronimo.console.message.InfoMessage

            break;
        case Warn:
            messages.add(new WarnMessage(abbr, detail));
            break;
        case Info:
            messages.add(new InfoMessage(abbr, detail));
            break;
        }
    }
View Full Code Here

Examples of org.apache.geronimo.console.message.InfoMessage

            break;
        case Warn:
            messages.add(new WarnMessage(abbr, detail));
            break;
        case Info:
            messages.add(new InfoMessage(abbr, detail));
            break;
        }
    }
View Full Code Here

Examples of org.apache.geronimo.console.message.InfoMessage

            break;
        case Warn:
            messages.add(new WarnMessage(abbr, detail));
            break;
        case Info:
            messages.add(new InfoMessage(abbr, detail));
            break;
        }
    }
View Full Code Here

Examples of org.apache.geronimo.console.message.InfoMessage

            break;
        case Warn:
            messages.add(new WarnMessage(abbr, detail));
            break;
        case Info:
            messages.add(new InfoMessage(abbr, detail));
            break;
        }
    }
View Full Code Here

Examples of org.locationtech.udig.image.georeferencing.internal.ui.message.InfoMessage

          return;
      }
      // if the code reach this point, the coordinate wasn't added, show
      // an advertise message.
      getMainComposite()
            .setMessage(new InfoMessage(Messages.CoordinateTableComposite_cant_add_gcp, Type.WARNING));
    }
  }
View Full Code Here

Examples of org.locationtech.udig.image.georeferencing.internal.ui.message.InfoMessage

  protected void executeGeoReferencingCommand(){
    try{
      showEnabled(false);
      cmd.execute();
    } catch (Exception e){
      this.mainComposite.displayMessage(new InfoMessage("Fail!. The georeferencing process didn't genereate the raster image", InfoMessage.Type.FAIL));
    }finally{
      showEnabled(true);
    }

  }
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.