Package de.desy.tine.client.TLinkFactory

Examples of de.desy.tine.client.TLinkFactory.RelinkedItem


        fieldKnown = true;
      }
    }
    if (fieldKnown)
    {
      RelinkedItem rli = tf.addLinkToReLinkList(lnk, tsd, fld);
      lnk.devProperty = prp;
      if (rli != null)
      {
        rli.setDestination(lnk);
        lnk.dOutput = rli.getDataObject();
      }
    }
    else
    { // this should not happen if every thing goes well
      cc = lnk.linkStatus = TErrorList.invalid_field;
View Full Code Here


    return 0;     
  }
  protected int mapInvalidDataRequest()
  {
    TLink lnk = this;
    RelinkedItem rli = tf.getRelinkedItem(lnk);
    if (rli == null) return 0; // nothing to do
    if (lnk.dOutput == null) return TErrorList.invalid_data;
    if (lnk.dOutput.dArrayLength == rli.getRelinkDataLength() &&
        lnk.dOutput.dFormat == rli.getRelinkDataFormat())
    { // nothing to do
      return 0;
    }
    tf.addLinkToReLinkList(lnk, rli.getRelinkDataLength(), rli.getRelinkDataFormat());
    lnk.dOutput = rli.getDataObject();
    return 0;     
  }
View Full Code Here

        fieldKnown = true;
      }
    }
    if (fieldKnown)
    {
      RelinkedItem rli = tf.addLinkToReLinkList(lnk, tsd, fld);
      lnk.devProperty = prp;
      if (rli != null)
      {
        rli.setDestination(lnk);
        lnk.dOutput = rli.getDataObject();
      }
    }
    else
    { // this should not happen if every thing goes well
      cc = lnk.linkStatus = TErrorList.invalid_field;
View Full Code Here

    return 0;     
  }
  protected int mapInvalidDataRequest()
  {
    TLink lnk = this;
    RelinkedItem rli = tf.getRelinkedItem(lnk);
    if (rli == null) return 0; // nothing to do
    if (lnk.dOutput == null) return TErrorList.invalid_data;
    if (lnk.dOutput.dArrayLength == rli.getRelinkDataLength() &&
        lnk.dOutput.dFormat == rli.getRelinkDataFormat())
    { // nothing to do
      return 0;
    }
    tf.addLinkToReLinkList(lnk, rli.getRelinkDataLength(), rli.getRelinkDataFormat());
    lnk.dOutput = rli.getDataObject();
    return 0;     
  }
View Full Code Here

        fieldKnown = true;
      }
    }
    if (fieldKnown)
    {
      RelinkedItem rli = tf.addLinkToReLinkList(lnk, tsd, fld);
      lnk.devProperty = prp;
      if (rli != null)
      {
        rli.setDestination(lnk);
        lnk.dOutput = rli.getDataObject();
      }
    }
    else
    { // this should not happen if every thing goes well
      cc = lnk.linkStatus = TErrorList.invalid_field;
View Full Code Here

    return 0;     
  }
  protected int mapInvalidDataRequest()
  {
    TLink lnk = this;
    RelinkedItem rli = tf.getRelinkedItem(lnk);
    if (rli == null) return 0; // nothing to do
    if (lnk.dOutput == null) return TErrorList.invalid_data;
    if (lnk.dOutput.dArrayLength == rli.getRelinkDataLength() &&
        lnk.dOutput.dFormat == rli.getRelinkDataFormat())
    { // nothing to do
      return 0;
    }
    tf.addLinkToReLinkList(lnk, rli.getRelinkDataLength(), rli.getRelinkDataFormat());
    lnk.dOutput = rli.getDataObject();
    return 0;     
  }
View Full Code Here

TOP

Related Classes of de.desy.tine.client.TLinkFactory.RelinkedItem

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.