1 3 package com.sslexplorer.navigation; 4 5 public class Option { 6 7 8 String forward; 9 String label; 10 String styleId; 11 12 public Option(String forward, String label, String styleId) { 13 this.forward = forward; 14 this.label = label; 15 this.styleId = styleId; 16 } 17 18 public String getForward() { 19 return forward; 20 } 21 22 public void setForward(String forward) { 23 this.forward = forward; 24 } 25 26 public String getLabel() { 27 return label; 28 } 29 30 public void setLabel(String label) { 31 this.label = label; 32 } 33 34 public void setStyleId(String styleId) { 35 this.styleId = styleId; 36 } 37 38 public String getStyleId() { 39 return styleId; 40 } 41 } | Popular Tags |