本文整理汇总了Java中org.eclipse.swt.custom.StyledText.setLineBullet方法的典型用法代码示例。如果您正苦于以下问题:Java StyledText.setLineBullet方法的具体用法?Java StyledText.setLineBullet怎么用?Java StyledText.setLineBullet使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.swt.custom.StyledText
的用法示例。
在下文中一共展示了StyledText.setLineBullet方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createControl
import org.eclipse.swt.custom.StyledText; //导入方法依赖的package包/类
@Override
public void createControl(Composite parent) {
Composite control = new Composite(parent, SWT.NONE);
setControl(control);
control.setLayout(new GridLayout(1, false));
StyledText summaryText = new StyledText(control, SWT.BORDER);
summaryText.setData(GW4E_MANUAL_ELEMENT_ID,GW4E_MANUAL_SUMMARY_TEXT_ID);
summaryText.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
StringBuffer text = new StringBuffer();
text.append(MessageUtil.getString("your_test_will_be_based_on_the_following") + "\n\n");
text.append(MessageUtil.getString("main_model") + "\n");
text.append( modelPath + "\n");
text.append(MessageUtil.getString("additional_models") + "\n");
for (ModelData path : additionalModels) {
text.append(path.getFullPath() + "\n");
}
text.append(MessageUtil.getString("generator_stop_condition" ) + "\n");
text.append( generatorstopcondition + "\n");
text.append( MessageUtil.getString("start_element" ) + "\n");
text.append(startnode + "\n");
text.append(MessageUtil.getString("remove_Blocked_Element") + "\n");
text.append((removeBlockedElement ? "Yes" : "No") + "\n");
summaryText.setText(text.toString());
int start = 2;
int length = 1;
summaryText.setLineBullet(start, length, buildMainModelStyle());
start = start + length;
summaryText.setLineBullet(start, length, buildCheckedlStyle());
start = start + length;
summaryText.setLineBullet(start, length, buildAdditionalTitleModelStyle());
start = start + length;
length = additionalModels.length;
summaryText.setLineBullet(start,length, buildCheckedlStyle());
start = start + length;
length = 1;
summaryText.setLineBullet(start, length, buildMainModelStyle());
start = start + length;
length = 1;
summaryText.setLineBullet(start, length, buildCheckedlStyle());
start = start + length;
length = 1;
summaryText.setLineBullet(start, length, buildMainModelStyle());
start = start + length;
length = 1;
summaryText.setLineBullet(start, length, buildCheckedlStyle());
start = start + length;
length = 1;
summaryText.setLineBullet(start, length, buildMainModelStyle());
start = start + length;
length = 1;
summaryText.setLineBullet(start, length, buildCheckedlStyle());
}