Package ru.snake.datepicker.action

Examples of ru.snake.datepicker.action.ChangeMonthAction


    JButton prevMonth = new JButton("<HTML>&lt;</HTML>");
    monthText = new JLabel("---------------");
    JButton nextMonth = new JButton("<HTML>&gt;</HTML>");

    prevMonth.addActionListener(new ChangeMonthAction(this, -1));
    nextMonth.addActionListener(new ChangeMonthAction(this, 1));

    prevMonth.setMargin(new Insets(0, 4, 0, 4));
    monthText.setHorizontalAlignment(SwingConstants.CENTER);
    nextMonth.setMargin(new Insets(0, 4, 0, 4));
View Full Code Here

TOP

Related Classes of ru.snake.datepicker.action.ChangeMonthAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.