本文整理了Java中javax.swing.text.JTextComponent.setVisible()
方法的一些代码示例,展示了JTextComponent.setVisible()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JTextComponent.setVisible()
方法的具体详情如下:
包路径:javax.swing.text.JTextComponent
类名称:JTextComponent
方法名:setVisible
暂无
代码示例来源:origin: com.l2fprod.common/l2fprod-common-shared
public void setSubtitleVisible(boolean b) {
subtitleLabel.setVisible(b);
}
代码示例来源:origin: org.apache.cayenne.modeler/cayenne-modeler
void toggleClientFieldsVisible(boolean visible) {
clientSeparator.setVisible(visible);
clientSuperClassNameLabel.setVisible(visible);
clientClassNameLabel.setVisible(visible);
serverOnlyLabel.setVisible(visible);
clientClassName.getComponent().setVisible(visible);
clientSuperClassName.getComponent().setVisible(visible);
serverOnly.setVisible(visible);
}
代码示例来源:origin: de.sciss/prefuse-core
/**
* Stops text editing on the display, hiding the text editing widget. If
* the text editor was associated with a specific VisualItem (ie one of the
* editText() methods which include a VisualItem as an argument was called),
* the item is updated with the edited text.
*/
public void stopEditing() {
m_editor.setVisible(false);
if ( m_editItem != null ) {
String txt = m_editor.getText();
m_editItem.set(m_editAttribute, txt);
m_editItem = null;
m_editAttribute = null;
m_editor.setBackground(null);
m_editor.setForeground(null);
}
m_editing = false;
}
代码示例来源:origin: de.sciss/prefuse-core
/**
* Show a text editing widget containing the given text and spanning the
* specified bounding box. Use stopEditing() to hide the text widget. Use
* the method calls getTextEditor().getText() to get the resulting edited
* text.
* @param txt the text string to display in the text widget
* @param r Rectangle representing the desired bounding box of the text
* editing widget
*/
public void editText(String txt, Rectangle r) {
if ( m_editing ) { stopEditing(); }
m_editing = true;
m_editor.setBounds(r.x,r.y,r.width,r.height);
m_editor.setText(txt);
m_editor.setVisible(true);
m_editor.setCaretPosition(txt.length());
m_editor.requestFocus();
}
代码示例来源:origin: org.netbeans.modules/org-netbeans-modules-cnd-debugger-common2
whileField.setVisible(showingDetails);
conditionLabel.setVisible(showingDetails);
conditionPane.setVisible(showingDetails);
lwpLabel.setVisible(showingDetails);
lwpField.setVisible(showingDetails);
代码示例来源:origin: de.sciss/prefuse-core
m_editor = new JTextField();
m_editor.setBorder(null);
m_editor.setVisible(false);
this.add(m_editor);
内容来源于网络,如有侵权,请联系作者删除!