Package soc.qase.state

Examples of soc.qase.state.Solid


    {
      solid = (int)(Utils.shortValue(data, offset));
      offset = offset + 2;
    }

    return (offset > prevOff ? new Solid(solid) : null);
  }
View Full Code Here


/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/
  private Solid processSolid()
  {
    Solid result = null;

    result = new Solid();

    // process solid
    if((bitmask & 0x08000000) != 0) {
      result.setSolid((int)(Utils.shortValue(data, offset)));
      offset = offset + 2;
    }
    return result;
  }
View Full Code Here

TOP

Related Classes of soc.qase.state.Solid

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.