1 18 package org.apache.batik.bridge; 19 20 import org.apache.batik.gvt.GraphicsNode; 21 22 31 public class StyleReference { 32 33 private GraphicsNode node; 34 private String styleAttribute; 35 36 41 public StyleReference(GraphicsNode node, String styleAttribute) { 42 this.node = node; 43 this.styleAttribute = styleAttribute; 44 } 45 46 49 public GraphicsNode getGraphicsNode(){ 50 return node; 51 } 52 53 56 public String getStyleAttribute(){ 57 return styleAttribute; 58 } 59 } 60 | Popular Tags |