psdi.mbo

Class MboSetData

  • java.lang.Object
    • psdi.mbo.MboSetData
  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    BBSet.BBMboSetData


    public class MboSetData
    extends java.lang.Object
    implements java.io.Serializable
    Object that holds information about a MboSet and zero or more rows of MboData. This object is returned from a getMboSetData() call to a MboSetRemote object. The call can ask for any number of rows of data which can be accessed by calling getMboData(int rowNo).
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor and Description
      MboSetData(BitFlag setFlags)
      Construct the information about the set from the flags.
      MboSetData(MboSet set)
      Cosntruct the information about the set
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      MboData[] getMboData()
      Return an array of MboData objects
      MboData getMboData(int row)
      Return a MboData object for the specified row.
      int getMboDataCount()
      How many MboData rows are there ?
      boolean isFlagSet(long flag)
      Is a flag for the MboSet set ? Typically the flag that is tested is READONLY.
      protected void setMboData(MboData[] values)
      Set the array of MboData objects.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • MboSetData

        public MboSetData(MboSet set)
        Cosntruct the information about the set
      • MboSetData

        public MboSetData(BitFlag setFlags)
        Construct the information about the set from the flags.
    • Method Detail

      • isFlagSet

        public boolean isFlagSet(long flag)
        Is a flag for the MboSet set ? Typically the flag that is tested is READONLY. Flags are defined in MboConstants.
      • setMboData

        protected void setMboData(MboData[] values)
        Set the array of MboData objects. Used only by the framework
      • getMboDataCount

        public int getMboDataCount()
        How many MboData rows are there ?
      • getMboData

        public MboData getMboData(int row)
        Return a MboData object for the specified row. Returns null if the row does not exist.
      • getMboData

        public MboData[] getMboData()
        Return an array of MboData objects