Example #1
0
 public void ClearRelease()
 {
     this.drawable = null;
     if (this.dp != null)
     {
         this.dp.ClearRelease();
     }
     this.dp = null;
 }
Example #2
0
 public InfoDrawable(I_Drawable drawable, DrawParam dp)
     : this()
 {
     if (drawable != null)
     {
         this.drawable = drawable;
         this.dp       = dp;
     }
 }
Example #3
0
 public void ClearRelease()
 {
     this.drawable=null;
     if (this.dp!=null)
     {
         this.dp.ClearRelease();
     }
     this.dp=null;
 }
Example #4
0
 public InfoDrawable(I_Drawable drawable, DrawParam dp)
     : this()
 {
     if (drawable!=null)
     {
         this.drawable=drawable;
         this.dp=dp;
     }
 }
Example #5
0
 // constructors
 private InfoDrawable()
 {
     this.drawable = null;
     this.dp       = null;
 }
Example #6
0
 // constructors
 private InfoDrawable()
 {
     this.drawable=null;
     this.dp=null;
 }