Java Swing UIManager createErrorLabel(String errorMsg)

Here you can find the source of createErrorLabel(String errorMsg)

Description

create Error Label

License

EUPL

Declaration

protected static JLabel createErrorLabel(String errorMsg) 

Method Source Code


//package com.java2s;
/*/*from www.  j a  v  a 2 s  . c  o m*/
 * #%L
 * Data Preparation Tool Standalone mapping tool
 * %%
 * Copyright (C) 2009 - 2014 Archives Portal Europe
 * %%
 * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by the European Commission - subsequent versions of the EUPL (the "Licence");
 * You may not use this work except in compliance with the Licence.
 * You may obtain a copy of the Licence at:
 * 
 * http://ec.europa.eu/idabc/eupl5
 * 
 * Unless required by applicable law or agreed to in writing, software distributed under the Licence is distributed on an "AS IS" basis,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the Licence for the specific language governing permissions and limitations under the Licence.
 * #L%
 */

import javax.swing.*;

public class Main {
    protected static JLabel createErrorLabel(String errorMsg) {
        JLabel label = new JLabel("<html><font color=red>" + errorMsg + "</font></html>");
        label.setIcon(UIManager.getIcon("OptionPane.errorIcon"));
        return label;
    }
}

Related

  1. beep(Component comp)
  2. canChangeSize()
  3. clearErrorLabel(JLabel label)
  4. configureStandardUI()
  5. createDefaultHorizontalAlignment()
  6. createFlow(final Object... components)
  7. createHorizontalAlignment(int scoutAlign)
  8. createHorizontalLine()
  9. createMessageLabel(String message)