本文整理汇总了Java中org.eclipse.zest.core.widgets.ZestStyles.CONNECTIONS_SOLID属性的典型用法代码示例。如果您正苦于以下问题:Java ZestStyles.CONNECTIONS_SOLID属性的具体用法?Java ZestStyles.CONNECTIONS_SOLID怎么用?Java ZestStyles.CONNECTIONS_SOLID使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.eclipse.zest.core.widgets.ZestStyles
的用法示例。
在下文中一共展示了ZestStyles.CONNECTIONS_SOLID属性的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getConnectionStyle
@Override
public int getConnectionStyle(Object rel) {
if ( rel instanceof EntityConnectionData ) {
EntityConnectionData d = (EntityConnectionData) rel;
RuleResolutionInfo rri = (RuleResolutionInfo) d.dest;
switch ( rri.getStatus() ) {
case RESOLUTION_DISCARDED: return ZestStyles.CONNECTIONS_DASH_DOT;
case RESOLUTION_UNKNOWN: return ZestStyles.CONNECTIONS_DOT;
case RESOLUTION_CONFIRMED: return ZestStyles.CONNECTIONS_SOLID;
}
}
return 0;
}
示例2: getConnectionStyle
@Override
public int getConnectionStyle(Object element) {
if ( element instanceof ISearchEdge ) {
AtlProblemQuickfix qfx = ((ISearchEdge) element).getQuickfix();
if ( qfx instanceof BindingProblemQuickFix ) {
return ZestStyles.CONNECTIONS_DASH;
}
}
return ZestStyles.CONNECTIONS_SOLID;
}
示例3: getConnectionStyle
@Override
public int getConnectionStyle(Object rel) {
return ZestStyles.CONNECTIONS_SOLID;
}
示例4: ConfigurationConflictAlgorithm
public ConfigurationConflictAlgorithm() {
// set default colors for this algorithm
entityColor = new Color(null, 215, 27, 27);
relationshipColor = new ConnectionStyle(ZestStyles.CONNECTIONS_SOLID, ColorConstants.red, 1, false);
}