Java JButton nombreImg(JButton boton)

Here you can find the source of nombreImg(JButton boton)

Description

nombre Img

License

Open Source License

Declaration

static String nombreImg(JButton boton) 

Method Source Code


//package com.java2s;
/*/*w  w w  . j  a  v a 2s.  com*/
 * Copyright (C) 2017 F?lix Pedrozo
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

import javax.swing.*;

public class Main {
    static String nombreImg(JButton boton) {
        return boton.getIcon().toString().split(".jpg")[0];
    }
}

Related

  1. formatJButton(JButton button, String tooltips)
  2. getButtonNumber(JButton btn)
  3. getScrollStroke(final JButton _jlbl_stroke)
  4. getWFStep(Vector actionButtons, String action)
  5. initHelpButton(final JButton buttonHelp)
  6. normalizeComponentDimension(JComponent[] jButtonList)
  7. nullifyButtonUI(final JButton button)
  8. orderOKCancelButtons(JButton okButton, JButton cancelButton)
  9. reduceNimbusButtonMargin(final JButton button)