Swing Style Aspect
Wednesday, November 30th, 2005Aspects are great way to to remove redundant code. I started tinkering with another aspect over the holiday because I was getting very tired of having manually style multiple JLabels with the same code over an over again. So instead of having to do something like this:
Font customFont = new Font("verdana",Font.BOLD,10);
Color mediumGray = new Color(172,172,172);
JLabel [...]