Java批量处理方法

/**
     * 批量处理方法
     * Makes all Compontens the same Size
     *
     * @param comps
     */
    public static void makeSameSize(JComponent... comps) {
    if (comps.length == 0) {
        return;
    }

 

调用

 

// Make same size
            GraphicUtils.makeSameSize(usernameField, passwordField);

posted @ 2013-06-04 09:19  IamThat  阅读(405)  评论(0编辑  收藏  举报