1 50 51 package com.lowagie.text.pdf; 52 53 58 59 public class PdfBorderArray extends PdfArray { 60 61 63 66 67 public PdfBorderArray(float hRadius, float vRadius, float width) { 68 this(hRadius, vRadius, width, null); 69 } 70 71 74 75 public PdfBorderArray(float hRadius, float vRadius, float width, PdfDashPattern dash) { 76 super(new PdfNumber(hRadius)); 77 add(new PdfNumber(vRadius)); 78 add(new PdfNumber(width)); 79 if (dash != null) 80 add(dash); 81 } 82 } | Popular Tags |