001 package org.kuali.maven.plugins.graph.pojo; 002 003 public class GraphNode { 004 int id; 005 boolean hidden; 006 String label = ""; 007 String fontsize = "8"; 008 String color = "black"; 009 String fontcolor = "black"; 010 String fillcolor = "white"; 011 String style = "solid,filled"; 012 013 public int getId() { 014 return id; 015 } 016 017 public void setId(int id) { 018 this.id = id; 019 } 020 021 public String getFontsize() { 022 return fontsize; 023 } 024 025 public void setFontsize(String fontsize) { 026 this.fontsize = fontsize; 027 } 028 029 public String getLabel() { 030 return label; 031 } 032 033 public void setLabel(String label) { 034 this.label = label; 035 } 036 037 public String getColor() { 038 return color; 039 } 040 041 public void setColor(String color) { 042 this.color = color; 043 } 044 045 public String getFontcolor() { 046 return fontcolor; 047 } 048 049 public void setFontcolor(String fontcolor) { 050 this.fontcolor = fontcolor; 051 } 052 053 public String getFillcolor() { 054 return fillcolor; 055 } 056 057 public void setFillcolor(String fillcolor) { 058 this.fillcolor = fillcolor; 059 } 060 061 public String getStyle() { 062 return style; 063 } 064 065 public void setStyle(String style) { 066 this.style = style; 067 } 068 069 public boolean isHidden() { 070 return hidden; 071 } 072 073 public void setHidden(boolean hidden) { 074 this.hidden = hidden; 075 } 076 }