當前位置: 首頁>>代碼示例>>Java>>正文


Java JBLabel.setText方法代碼示例

本文整理匯總了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();
}
 
開發者ID:mmm444,項目名稱:ijphab,代碼行數:23,代碼來源:PhabricatorRepositoryEditor.java

示例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);
  }
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:10,代碼來源:ConfigureAvdOptionsStep.java

示例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);
    }
 
開發者ID:sergenes,項目名稱:AllProjects,代碼行數:80,代碼來源:AllProjectsToolWindowFactory.java


注:本文中的com.intellij.ui.components.JBLabel.setText方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。