1 18 package org.apache.batik.extension.svg; 19 20 import java.awt.geom.Rectangle2D ; 21 22 28 public class RegionInfo 29 extends Rectangle2D.Float  30 { 31 private float verticalAlignment = 0.0f; 32 33 public RegionInfo(float x, float y, float w, float h, 34 float verticalAlignment) { 35 super(x, y, w, h); 36 this.verticalAlignment = verticalAlignment; 37 } 38 39 44 public float getVerticalAlignment() { 45 return verticalAlignment; 46 } 47 48 53 public void setVerticalAlignment(float verticalAlignment) { 54 this.verticalAlignment = verticalAlignment; 55 } 56 } 57 | Popular Tags |