bottomcontroller.java

来自「这是一个非常优秀的可以自己定义复杂任务调度配置的框架」· Java 代码 · 共 89 行

JAVA
89
字号
/** *  This file is part of the jcrontab package *  Copyright (C) 2001-2004 Israel Olalla * *  This library is free software; you can redistribute it and/or *  modify it under the terms of the GNU Lesser General Public *  License as published by the Free Software Foundation; either *  version 2 of the License, or (at your option) any later version. * *  This library is distributed in the hope that it will be useful, *  but WITHOUT ANY WARRANTY; without even the implied warranty of *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU *  Lesser General Public License for more details. * *  You should have received a copy of the GNU Lesser General Public *  License along with this library; if not, write to the Free *  Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, *  MA 02111-1307, USA * *  For questions, suggestions: * *  iolalla@yahoo.com * */package org.jcrontab.gui;import javax.swing.*;import java.awt.event.*;import java.awt.*;/** * This class is done to make easier to manage The Bottom line, of the app * @author $Author: iolalla $ * @version $Revision: 1.2 $ */public class BottomController {        // Initial message    String value = "Welcome to Jcrontab Editor";        // The whole panel    JPanel panel = null;    // The panel label to show info to the user    JLabel leftLabel =null;    // The panel label to show the config file to the user    JLabel rigthLabel =null;        // Sets the color to white    Color backGroundColor = new Color(0xf9f9f9);        private static BottomController instance = null;        public static BottomController getInstance() {        if ( instance == null) instance = new BottomController();        return instance;    }        private BottomController() {}        public JPanel getPanel() {        panel = new JPanel(false);        leftLabel = new JLabel(value);        leftLabel.setHorizontalAlignment(JLabel.LEFT);                rigthLabel = new JLabel("ConfigFile");        rigthLabel.setHorizontalAlignment(JLabel.RIGHT);                panel.setLayout(new GridLayout(1, 2));        panel.setBackground(backGroundColor);        panel.add(leftLabel);        panel.add(rigthLabel);        return panel;    }        public void setText(String text) {        leftLabel.setForeground(new Color(0x000000));        leftLabel.setText(text);    }        public void setError(String text) {        leftLabel.setForeground(new Color(0xfc0505));        leftLabel.setText(text);    }        public void setRightText(String text) {        rigthLabel.setForeground(new Color(0x000000));        rigthLabel.setText(text);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?