mirror of https://github.com/sipwise/jitsi.git
parent
3b0241f5b4
commit
60d416cf01
@ -0,0 +1,29 @@
|
||||
/*
|
||||
* SIP Communicator, the OpenSource Java VoIP and Instant Messaging client.
|
||||
*
|
||||
* Distributable under LGPL license.
|
||||
* See terms of license at gnu.org.
|
||||
*/
|
||||
package net.java.sip.communicator.impl.gui.main.customcontrols;
|
||||
|
||||
import java.awt.Dimension;
|
||||
|
||||
import javax.swing.JTextArea;
|
||||
|
||||
/**
|
||||
* The SIPCommMsgTextArea is a text area defined specially for warning
|
||||
* messages.
|
||||
*
|
||||
* @author Yana Stamcheva
|
||||
*/
|
||||
public class SIPCommTranspTextPane extends JTextArea {
|
||||
|
||||
public SIPCommTranspTextPane(String text){
|
||||
super(text);
|
||||
|
||||
this.setEditable(false);
|
||||
this.setLineWrap(true);
|
||||
this.setWrapStyleWord(true);
|
||||
this.setOpaque(false);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue