Package com.metamx.collections.bitmap

Examples of com.metamx.collections.bitmap.GenericBitmap


*/
public class Point extends Node
{
  private static GenericBitmap makeBitmap(int entry, BitmapFactory bitmapFactory)
  {
    GenericBitmap retVal = bitmapFactory.getEmptyBitmap();
    retVal.add(entry);
    return retVal;
  }
View Full Code Here

TOP

Related Classes of com.metamx.collections.bitmap.GenericBitmap

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.