`
stjauns
  • 浏览: 90546 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

AutoCodeGenTool自动生成重复代码

    博客分类:
  • JAVA
阅读更多
公司系统用tikeswing做表现层,配置布局的时候有很多重复的代码,于是使用这个工具自动生成代码:


左边是变化的变量名,右下是套用的重复代码格式,按钮指代使用哪种格式填入变量名。

package transms.app._0all.util;

import java.awt.BorderLayout;
import java.text.BreakIterator;

import javax.swing.JTextArea;
import javax.swing.JTabbedPane;
import javax.swing.JScrollPane;
import javax.swing.border.TitledBorder;
import javax.swing.JPanel;
import javax.swing.JToolBar;
import javax.swing.JButton;
import javax.swing.JSplitPane;

public class AutoCodeGenTool extends javax.swing.JFrame {
    private static final long serialVersionUID = 627855237034164778L;

    private javax.swing.JButton ivjJButton1 = null;

    private javax.swing.JPanel ivjJFrameContentPane = null;

    private javax.swing.JTextArea txtVar1 = null;

    private JTextArea txtResult = null;

    private JTextArea txtPara1 = null;

    private JTabbedPane tpWest = null;

    private JScrollPane spWest1 = null;

    private JScrollPane spWest2 = null;

    private JTextArea txtVar2 = null;

    private JScrollPane spWest3 = null;

    private JTextArea txtVar3 = null;

    private JTabbedPane tpSouth = null;

    private JScrollPane spSouth1 = null;

    private JScrollPane spSouth2 = null;

    private JScrollPane spSouth3 = null;

    private JTextArea txtPara2 = null;

    private JTextArea txtPara3 = null;

    private JScrollPane spCenter = null;

    private JToolBar jJToolBarBar = null;

    private JButton jButton = null;

    private JButton jButton1 = null;

    private JButton jButton2 = null;

    private JButton jButton3 = null;

    private JSplitPane jSplitPane = null;

    private JSplitPane jSplitPane1 = null;

    private JPanel jPanel = null;

    public AutoCodeGenTool() {
        super();
        initialize();
    }

    /**
     * Return the JButton1 property value.
     * 
     * @return javax.swing.JButton
     */
    private javax.swing.JButton getJButton1() {
        if (ivjJButton1 == null) {
            ivjJButton1 = new javax.swing.JButton();
            ivjJButton1.setName("JButton1");
            ivjJButton1.setText("开始");
            ivjJButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent e) {
                    doStaff1();
                    getTxtResult().setSelectionStart(0);
                    getTxtResult().setSelectionEnd(getTxtResult().getCaretPosition());
                    getTxtResult().requestFocusInWindow();
                    getTxtResult().copy();
                }
            });
        }
        return ivjJButton1;
    }

    protected void doStaff1() {
        String s1 = getVar();
        BreakIterator it = BreakIterator.getLineInstance();
        it.setText(s1);

        int start = it.first();
        txtResult.setText("");
        for (int end = it.next(); end != BreakIterator.DONE; start = end, end = it.next()) {
            doStaff2(s1.substring(start, end));
        }
    }

    private String getVar() {
        switch (this.tpWest.getSelectedIndex()) {
        case 0:
            return txtVar1.getText();
        case 1:
            return txtVar2.getText();
        case 2:
            return txtVar3.getText();
        default:
            return "";
        }
    }

    private void doStaff2(String para) {
        String org = getPara();
        /**
         * @@原参数
         * @#首字母大写其他不变参数 #@首字母小写其他不变参数 <>全大写参数 ><全小写参数 @< 首字母大写其他小写
         */
        para = para.replaceAll("\r", "");
        para = para.replaceAll("\n", "");
        org = org.replaceAll("@@", para);
        org = org
                .replaceAll("@#", para.substring(0, 1).toUpperCase() + para.substring(1));
        org = org.replaceAll("@<", para.substring(0, 1).toUpperCase()
                + para.substring(1).toLowerCase());
        org = org
                .replaceAll("#@", para.substring(0, 1).toLowerCase() + para.substring(1));
        org = org.replaceAll("<>", para.toUpperCase());
        org = org.replaceAll("><", para.toLowerCase());
        txtResult.append(org + "\r\n");
    }

    private String getPara() {
        switch (this.tpSouth.getSelectedIndex()) {
        case 0:
            return txtPara1.getText();
        case 1:
            return txtPara2.getText();
        case 2:
            return txtPara3.getText();
        default:
            return "";
        }
    }

    private JTextArea getTxt() {
        switch (this.tpSouth.getSelectedIndex()) {
        case 0:
            return txtPara1;
        case 1:
            return txtPara2;
        case 2:
            return txtPara3;
        default:
            return null;
        }
    }

    /**
     * Return the JFrameContentPane property value.
     * 
     * @return javax.swing.JPanel
     */
    private javax.swing.JPanel getJFrameContentPane() {
        if (ivjJFrameContentPane == null) {
            BorderLayout borderLayout = new BorderLayout();
            borderLayout.setHgap(6);
            borderLayout.setVgap(6);
            ivjJFrameContentPane = new javax.swing.JPanel();
            ivjJFrameContentPane.setLayout(borderLayout);
            ivjJFrameContentPane.setName("JFrameContentPane");
            ivjJFrameContentPane.add(getJButton1(), BorderLayout.NORTH);
            ivjJFrameContentPane.add(getJSplitPane(), BorderLayout.CENTER);
        }
        return ivjJFrameContentPane;
    }

    /**
     * Return the JTextArea1 property value.
     * 
     * @return javax.swing.JTextArea
     */
    private javax.swing.JTextArea getJTextArea1() {
        if (txtVar1 == null) {
            txtVar1 = new javax.swing.JTextArea();
            txtVar1.setName("JTextArea1");
            txtVar1.setRows(3);
            txtVar1.setColumns(17);
        }
        return txtVar1;
    }

    /**
     * Initialize the class.
     */
    private void initialize() {

        this.setName("JFrame1");
        this.setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
        this.setBounds(45, 25, 800, 600);
        this.setTitle("AutoCodeGenTool");
        this.setContentPane(getJFrameContentPane());

    }

    /**
     * This method initializes txtResult
     * 
     * @return javax.swing.JTextArea
     */
    private JTextArea getTxtResult() {
        if (txtResult == null) {

            txtResult = new JTextArea();

        }
        return txtResult;
    }

    /**
     * This method initializes jTextArea1
     * 
     * @return javax.swing.JTextArea
     */
    private JTextArea getJTextArea12() {
        if (txtPara1 == null) {
            txtPara1 = new JTextArea();
            txtPara1.setRows(10);
        }
        return txtPara1;
    }

    /**
     * This method initializes tbWest
     * 
     * @return javax.swing.JTabbedPane
     */
    private JTabbedPane getTbWest() {
        if (tpWest == null) {
            tpWest = new JTabbedPane();
            tpWest.addTab("VAR1", null, getSpWest1(), null);
            tpWest.addTab("VAR2", null, getSpWest2(), null);
            tpWest.addTab("VAR3", null, getSpWest3(), null);
        }
        return tpWest;
    }

    /**
     * This method initializes spWest1
     * 
     * @return javax.swing.JScrollPane
     */
    private JScrollPane getSpWest1() {
        if (spWest1 == null) {
            spWest1 = new JScrollPane();
            spWest1.setViewportView(getJTextArea1());
        }
        return spWest1;
    }

    /**
     * This method initializes spWest2
     * 
     * @return javax.swing.JScrollPane
     */
    private JScrollPane getSpWest2() {
        if (spWest2 == null) {
            spWest2 = new JScrollPane();
            spWest2.setViewportView(getTxtVar2());
        }
        return spWest2;
    }

    /**
     * This method initializes txtVar2
     * 
     * @return javax.swing.JTextArea
     */
    private JTextArea getTxtVar2() {
        if (txtVar2 == null) {
            txtVar2 = new JTextArea();
        }
        return txtVar2;
    }

    /**
     * This method initializes spWest3
     * 
     * @return javax.swing.JScrollPane
     */
    private JScrollPane getSpWest3() {
        if (spWest3 == null) {
            spWest3 = new JScrollPane();
            spWest3.setViewportView(getTxtVar3());
        }
        return spWest3;
    }

    /**
     * This method initializes txtVar3
     * 
     * @return javax.swing.JTextArea
     */
    private JTextArea getTxtVar3() {
        if (txtVar3 == null) {
            txtVar3 = new JTextArea();
        }
        return txtVar3;
    }

    /**
     * This method initializes tpSouth
     * 
     * @return javax.swing.JTabbedPane
     */
    private JTabbedPane getTpSouth() {
        if (tpSouth == null) {
            tpSouth = new JTabbedPane();
            tpSouth.addTab("Para1", null, getSpSouth1(), null);
            tpSouth.addTab("Para2", null, getSpSouth2(), null);
            tpSouth.addTab("Para3", null, getSpSouth3(), null);
        }
        return tpSouth;
    }

    private void focusSouth() {
        ((JScrollPane) getTpSouth().getSelectedComponent()).getViewport().getView()
                .requestFocusInWindow();
    }

    /**
     * This method initializes spSouth1
     * 
     * @return javax.swing.JScrollPane
     */
    private JScrollPane getSpSouth1() {
        if (spSouth1 == null) {
            spSouth1 = new JScrollPane();
            spSouth1.setViewportView(getJTextArea12());
        }
        return spSouth1;
    }

    /**
     * This method initializes spSouth2
     * 
     * @return javax.swing.JScrollPane
     */
    private JScrollPane getSpSouth2() {
        if (spSouth2 == null) {
            spSouth2 = new JScrollPane();
            spSouth2.setViewportView(getTxtPara2());
        }
        return spSouth2;
    }

    /**
     * This method initializes spSouth3
     * 
     * @return javax.swing.JScrollPane
     */
    private JScrollPane getSpSouth3() {
        if (spSouth3 == null) {
            spSouth3 = new JScrollPane();
            spSouth3.setViewportView(getTxtPara3());
        }
        return spSouth3;
    }

    /**
     * This method initializes txtPara2
     * 
     * @return javax.swing.JTextArea
     */
    private JTextArea getTxtPara2() {
        if (txtPara2 == null) {
            txtPara2 = new JTextArea();
        }
        return txtPara2;
    }

    /**
     * This method initializes txtPara3
     * 
     * @return javax.swing.JTextArea
     */
    private JTextArea getTxtPara3() {
        if (txtPara3 == null) {
            txtPara3 = new JTextArea();
        }
        return txtPara3;
    }

    /**
     * This method initializes spCenter
     * 
     * @return javax.swing.JScrollPane
     */
    private JScrollPane getSpCenter() {
        if (spCenter == null) {
            TitledBorder vitalBorder = new TitledBorder("结果:");
            spCenter = new JScrollPane();
            spCenter.setViewportView(getTxtResult());
            spCenter.setBorder(vitalBorder);
        }
        return spCenter;
    }

    /**
     * This method initializes jJToolBarBar
     * 
     * @return javax.swing.JToolBar
     */
    private JToolBar getJJToolBarBar() {
        if (jJToolBarBar == null) {
            jJToolBarBar = new JToolBar();
            jJToolBarBar.add(getJButton());
            jJToolBarBar.add(getJButton12());
            jJToolBarBar.add(getJButton2());
            jJToolBarBar.add(getJButton3());
        }
        return jJToolBarBar;
    }

    /**
     * This method initializes jButton
     * 
     * @return javax.swing.JButton
     */
    private JButton getJButton() {
        if (jButton == null) {
            jButton = new JButton();
            jButton.setText(" 原 ");
            jButton.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent e) {
                    getTxt().replaceSelection("@@");
                    focusSouth();
                }
            });
        }
        return jButton;
    }

    /**
     * This method initializes jButton1
     * 
     * @return javax.swing.JButton
     */
    private JButton getJButton12() {
        if (jButton1 == null) {
            jButton1 = new JButton();
            jButton1.setText("大小");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent e) {
                    getTxt().replaceSelection("@<");
                    focusSouth();
                }
            });
        }
        return jButton1;
    }

    /**
     * This method initializes jButton2
     * 
     * @return javax.swing.JButton
     */
    private JButton getJButton2() {
        if (jButton2 == null) {
            jButton2 = new JButton();
            jButton2.setText(" 大 ");
            jButton2.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent e) {
                    getTxt().replaceSelection("<>");
                    focusSouth();
                }
            });
        }
        return jButton2;
    }

    /**
     * This method initializes jButton3
     * 
     * @return javax.swing.JButton
     */
    private JButton getJButton3() {
        if (jButton3 == null) {
            jButton3 = new JButton();
            jButton3.setText(" 小 ");
            jButton3.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent e) {
                    getTxt().replaceSelection("><");
                    focusSouth();
                }
            });
        }
        return jButton3;
    }

    /**
     * This method initializes jSplitPane
     * 
     * @return javax.swing.JSplitPane
     */
    private JSplitPane getJSplitPane() {
        if (jSplitPane == null) {
            jSplitPane = new JSplitPane();
            jSplitPane.setResizeWeight(0.2D);
            jSplitPane.setRightComponent(getJSplitPane1());
            jSplitPane.setLeftComponent(getTbWest());
        }
        return jSplitPane;
    }

    /**
     * This method initializes jSplitPane1
     * 
     * @return javax.swing.JSplitPane
     */
    private JSplitPane getJSplitPane1() {
        if (jSplitPane1 == null) {
            jSplitPane1 = new JSplitPane();
            jSplitPane1.setOrientation(JSplitPane.VERTICAL_SPLIT);
            jSplitPane1.setResizeWeight(0.8D);
            jSplitPane1.setBottomComponent(getJPanel());
            jSplitPane1.setTopComponent(getSpCenter());
        }
        return jSplitPane1;
    }

    /**
     * This method initializes jPanel
     * 
     * @return javax.swing.JPanel
     */
    private JPanel getJPanel() {
        if (jPanel == null) {
            jPanel = new JPanel();
            jPanel.setLayout(new BorderLayout());
            jPanel.add(getJJToolBarBar(), BorderLayout.NORTH);
            jPanel.add(getTpSouth(), BorderLayout.CENTER);
        }
        return jPanel;
    }
}
  • 大小: 10.9 KB
分享到:
评论

相关推荐

    python入门-30.寻找列表中只出现一次的数字-寻找单身狗.py

    python入门-30.寻找列表中只出现一次的数字——寻找单身狗.py

    布尔教育linux优化笔记

    linux优化笔记,配套视频:https://www.bilibili.com/list/474327672?sid=4496133&spm_id_from=333.999.0.0&desc=1

    知识付费系统-直播+讲师入驻+课程售卖+商城系统-v2.1.9版本搭建以及资源分享下载

    知识付费系统-直播+讲师入驻+课程售卖+商城系统-v2.1.9版本搭建以及资源分享下载,CRMEB知识付费分销与直播营销系统是由西安众邦科技自主开发的一款在线教育平台,该系统不仅拥有独立的知识产权,还采用了先进的ThinkPhp5.0框架和Vue前端技术栈,集成了在线直播教学及课程分销等多种功能,旨在为用户提供全方位的学习体验,默认解压密码youyacaocom

    美妆神域-JAVA-基于springBoot美妆神域设计与实现

    美妆神域-JAVA-基于springBoot美妆神域设计与实现

    原生js制作Google粘土logo动画涂鸦代码.zip

    原生js制作Google粘土logo动画涂鸦代码.zip

    golin 扫描工具使用, 检查系统漏洞、web程序漏洞

    golin 扫描工具使用, 检查系统漏洞、web程序漏洞

    原生态纯js图片网格鼠标悬停放大显示特效代码下载.zip

    原生态纯js图片网格鼠标悬停放大显示特效代码下载.zip

    用AWLUM进行灰色编码2^2n-QAM调制的精确率Matlab代码.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手

    去水印web端独立版web

    去水印web端独立版web

    原生js制作左侧浮动可折叠在线客服代码.zip

    原生js制作左侧浮动可折叠在线客服代码.zip

    Chrome 谷歌浏览器下载

    Chrome 谷歌浏览器下载

    亲测全新完整版H5商城系统源码 附教程

    全新完整版H5商城系统源码 自己花钱买的,亲测可用,需要自行下载 H5商城系统设置是实现商城基本功能的核心部分,涵盖了从网站配置、短信和支付配置,到商品、工单、订单、分站和提现管理等多个模块的设置。以下是详细的设置指南,帮助您快速上手并高效管理商城系统。 测试环境:Nginx+PHP7.0+MySQL5.6 1. 网站配置 设置商城名称、LOGO、标题、联系方式和SEO关键词等,确保商城专业和易于搜索。 2. 短信配置 配置短信接口和模板,用于发送订单通知、验证码等,提升用户体验。 3. 支付接口配置 配置微信、支付宝等支付接口,填写API密钥和回调地址,确保支付流畅。 4. 商品分类管理 对商品进行分类和排序,设置分类名称和图标,便于用户查找商品。 5. 商品管理 添加和管理商品信息、规格、图片等,确保商品信息准确丰富。 6. 工单管理 查看和回复用户工单,记录售后问题,提升用户服务质量。 7. 订单管理 查看订单详情,更新订单状态,支持批量导出,方便订单跟踪。 8. 分站管理 创建不同区域分站,设置权限,统一管理各区域市场。 9. 提现管理

    短信3.141592672893982398674234

    apk安装包

    原生js选项卡插件自定义图片滑动选项卡切换.zip

    原生js选项卡插件自定义图片滑动选项卡切换.zip

    1-宗教信息佛教佛寺寺庙庵堂相关数据-社科数据.zip

    宗教信息佛教佛寺寺庙庵堂相关数据集提供了全国各个地区省市县各个佛教寺庙的详细信息。这些数据不仅包括寺庙的名称和负责人姓名,还涵盖了所属省份、地级市、区县、具体地址、建立日期以及支派类别等关键信息。该数据集整理了超过3万条样本,为研究中国佛教寺庙的分布、历史和文化提供了丰富的第一手资料。这些信息有助于了解佛教在中国的传播和发展,以及寺庙在社会和文化中的作用。数据的整理和提供,对于宗教学、社会学、历史学和文化研究等领域的学者来说,是一个宝贵的资源。

    线性电阻网络的等效电阻计算Matlab代码.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手

    简单的 Python 版本管理.zip

    简单的 Python 版本管理pyenvpyenv 可让您轻松在多个 Python 版本之间切换。它简单、不引人注目,并遵循 UNIX 传统,即使用单一用途的工具来做好一件事。该项目由rbenv和 ruby​​-build分叉而来,并针对 Python 进行了修改。pyenv 的作用是什么......允许您根据每个用户更改全局 Python 版本。为每个项目的 Python 版本提供支持。允许您使用环境变量覆盖 Python 版本。一次搜索多个 Python 版本的命令。这可能有助于使用tox跨 Python 版本进行测试。与 pythonbrew 和 pythonz 相比,pyenv没有……依赖于Python本身。pyenv由纯shell脚本制作。不存在Python的引导问题。需要加载到你的 shell 中。相反,pyenv 的 shim 方法通过向你的 中添加目录来工作PATH。管理虚拟环境。当然,你可以自己创建虚拟环境 ,或者使用pyenv-virtualenv 来自动化该过程。目录安装获取 PyenvLinux/UNIX自动安装程序基本

    Notepad-v2.20工具,是替代Notepad++的首选工具

    Notepad-v2.20工具,是替代Notepad++的首选工具

    原生js随机图片拖拽排序代码.zip

    原生js随机图片拖拽排序代码.zip

    更快、更好、更稳定的Redis桌面(GUI)管理客户端,兼容Windows、Mac、Linux,性能出众,轻松加载海量键值

    更快、更好、更稳定的Redis桌面(GUI)管理客户端,兼容Windows、Mac、Linux,性能出众,轻松加载海量键值

Global site tag (gtag.js) - Google Analytics