All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pdfjet.Dimension Maven / Gradle / Ivy

/*    */ package com.pdfjet;
/*    */ 
/*    */ public class Dimension
/*    */ {
/*    */   protected float w;
/*    */   protected float h;
/*    */ 
/*    */   public Dimension(float paramFloat1, float paramFloat2)
/*    */   {
/* 46 */     this.w = paramFloat1;
/* 47 */     this.h = paramFloat2;
/*    */   }
/*    */ 
/*    */   public float getWidth()
/*    */   {
/* 52 */     return this.w;
/*    */   }
/*    */ 
/*    */   public float getHeight()
/*    */   {
/* 57 */     return this.h;
/*    */   }
/*    */ }

/* Location:           E:\EGGWIFI\Customer\trunk\src\Workspace\Customer\Customer Maven Webapp\src\main\webapp\WEB-INF\lib\PDFjet.jar
 * Qualified Name:     com.pdfjet.Dimension
 * JD-Core Version:    0.6.2
 */




© 2015 - 2024 Weber Informatics LLC | Privacy Policy