1 19 20 package com.sslexplorer.core; 21 22 public class PanelWrapper { 23 private Panel panel; 24 private int weight; 25 26 public PanelWrapper(Panel panel, int weight) { 27 this.weight = weight; 28 this.panel = panel; 29 } 30 31 public Panel getPanel() { 32 return panel; 33 } 34 35 public int getWeight() { 36 return weight; 37 } 38 39 public void setWeight(int weight) { 40 this.weight = weight; 41 } 42 } | Popular Tags |