Java Swing Border getTextFieldBorder()

Here you can find the source of getTextFieldBorder()

Description

get Text Field Border

License

Apache License

Declaration

public static Border getTextFieldBorder() 

Method Source Code


//package com.java2s;
/*/*from ww w  .j a v  a 2s  .c  om*/
 * Copyright 2000-2013 JetBrains s.r.o.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import javax.swing.*;

import javax.swing.border.Border;

public class Main {
    public static Border getTextFieldBorder() {
        return UIManager.getBorder("TextField.border");
    }
}

Related

  1. extendByBorder(JLabel label, Dimension dm)
  2. findComponentWithBorder(JComponent panel, Class aClass)
  3. generatePanelWithoutBorder()
  4. getDefaultBorder()
  5. getDefaultBorderColour()
  6. getToolTipBorder()
  7. getWebBorderShape(final JComponent component, final int shadeWidth, final int round)
  8. initLineBorderPanel(Color color, Color lineColor)
  9. installBorder(JComponent c, Border defaultBorder)