本文整理匯總了Java中com.intellij.ui.components.JBLabel.setText方法的典型用法代碼示例。如果您正苦於以下問題:Java JBLabel.setText方法的具體用法?Java JBLabel.setText怎麽用?Java JBLabel.setText使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.intellij.ui.components.JBLabel
的用法示例。
在下文中一共展示了JBLabel.setText方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: createCustomPanel
import com.intellij.ui.components.JBLabel; //導入方法依賴的package包/類
@Nullable
@Override
protected JComponent createCustomPanel() {
myIconProjectsLabel = new JBLabel("Icon Projects:", SwingConstants.RIGHT);
myIconProjects = TextFieldWithAutoCompletion.create(
myProject,
Collections.emptyList(),
true,
myRepository.getIconProjects()
);
JBLabel descLabel = new JBLabel();
descLabel.setCopyable(true);
descLabel.setText("Only one icon is shown for each task. " +
"This icon is extracted from the projects the task belongs to.<br>" +
"You can specify the projects whose icons will be used first. " +
"Separate multiple projects with commas.");
descLabel.setComponentStyle(UIUtil.ComponentStyle.SMALL);
return FormBuilder.createFormBuilder()
.addLabeledComponent(myIconProjectsLabel, myIconProjects)
.addComponentToRightColumn(descLabel)
.getPanel();
}
示例2: setValue
import com.intellij.ui.components.JBLabel; //導入方法依賴的package包/類
@Override
public void setValue(@Nullable Device newValue, @NotNull JBLabel component) {
if (newValue != null) {
component.setText(newValue.getDisplayName());
Icon icon = DeviceDefinitionPreview.getIcon(newValue);
component.setIcon(icon);
}
}
示例3: createToolWindowContent
import com.intellij.ui.components.JBLabel; //導入方法依賴的package包/類
@Override
public void createToolWindowContent(Project project, ToolWindow toolWindow) {
makeTable();
// System.out.println("createToolWindowContent()->"+toolWindow.getTitle());
totalSelectedTime = new JBLabel();
totalSelectedTime.setText("Not selected");
searchField = new JBTextField();
searchField.setToolTipText("Select column in combo box, input text, and press enter");
searchField.setColumns(50);
buildFilterComboBox();
//build UI
NonOpaquePanel totalPanel = new NonOpaquePanel();
totalPanel.add(Box.createHorizontalStrut(50), BorderLayout.WEST);
totalPanel.add(totalSelectedTime, BorderLayout.CENTER);
totalPanel.add(Box.createHorizontalStrut(50), BorderLayout.EAST);
NonOpaquePanel rightPanel = new NonOpaquePanel();
rightPanel.add(comboBoxLabel, BorderLayout.WEST);
rightPanel.add(Box.createHorizontalStrut(50), BorderLayout.CENTER);
rightPanel.add(totalPanel, BorderLayout.EAST);
NonOpaquePanel filterPanel = new NonOpaquePanel();
Icon refreshIcon = IconLoader.getIcon("/icons/refresh.png");
JButton btn = new JButton(refreshIcon);
btn.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
loadDataFromSource(table_model, null);
table.updateUI();
}
});
JPanel butonPanel = new JPanel();
butonPanel.setLayout(new FlowLayout());
butonPanel.add(btn) ;
butonPanel.add(new JLabel("Filter: ")) ;
filterPanel.add(butonPanel, BorderLayout.WEST);
filterPanel.add(searchField, BorderLayout.CENTER);
filterPanel.add(rightPanel, BorderLayout.EAST);
filterPanel.setBorder(new EmptyBorder(10, 10, 10, 10));
// final Component component = toolWindow.getComponent();
JPanel panel = new JPanel();
panel.setLayout(new BorderLayout());
panel.add(filterPanel, BorderLayout.NORTH);
panel.add(sp, BorderLayout.CENTER);
// component.getParent().add(filterPanel, BorderLayout.NORTH);
// component.getParent().add(sp, BorderLayout.CENTER);
searchField.addKeyListener(new KeyAdapter() {
@Override
public void keyPressed(KeyEvent e) {
if (e.getKeyCode() == KeyEvent.VK_ENTER) {
e.consume();
newFilter(searchField.getText(), comboBoxLabel.getSelectedIndex());
table.updateUI();
} else {
super.keyPressed(e);
}
}
});
ContentFactory contentFactory = ContentFactory.SERVICE.getInstance();
Content content = contentFactory.createContent(panel, "", false);
toolWindow.getContentManager().addContent(content);
}