Here you can find the source of readOnly(JTextComponent c, Component parent)
public static void readOnly(JTextComponent c, Component parent)
//package com.java2s; //License from project: Open Source License import java.awt.*; import javax.swing.text.*; public class Main { public static void readOnly(JTextComponent c, Component parent) { c.setEditable(false);/*w ww . java2s . c om*/ c.setForeground(parent.getForeground()); c.setBackground(parent.getBackground()); } }