本文整理汇总了Java中org.eclipse.draw2d.RotatableDecoration类的典型用法代码示例。如果您正苦于以下问题:Java RotatableDecoration类的具体用法?Java RotatableDecoration怎么用?Java RotatableDecoration使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
RotatableDecoration类属于org.eclipse.draw2d包,在下文中一共展示了RotatableDecoration类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createDecoration
import org.eclipse.draw2d.RotatableDecoration; //导入依赖的package包/类
/**
* @generated NOT
*/
private RotatableDecoration createDecoration() {
PolygonDecoration df = new PolygonDecoration();
df.setLineWidth(1);
PointList list = new PointList();
list.addPoint(0, 0);
list.addPoint(-1, 1);
list.addPoint(0, 0);
list.addPoint(-1, -1);
list.addPoint(0, 0);
list.addPoint(-1, 0);
list.addPoint(-2, 1);
list.addPoint(-1, 0);
list.addPoint(-2, -1);
list.addPoint(-1, 0);
df.setTemplate(list);
return df;
}
示例2: createTargetDecoration
import org.eclipse.draw2d.RotatableDecoration; //导入依赖的package包/类
private RotatableDecoration createTargetDecoration() {
PolygonDecoration df = new PolygonDecoration();
df.setFill(true);
df.setLineWidth(getMapMode().DPtoLP(1));
df.setTemplate(PolygonDecoration.TRIANGLE_TIP);
return df;
}
示例3: createTargetDecoration
import org.eclipse.draw2d.RotatableDecoration; //导入依赖的package包/类
/**
* @generated
*/
private RotatableDecoration createTargetDecoration() {
PolygonDecoration df = new PolygonDecoration();
df.setFill(true);
PointList pl = new PointList();
pl.addPoint(getMapMode().DPtoLP(0), getMapMode().DPtoLP(0));
pl.addPoint(getMapMode().DPtoLP(-2), getMapMode().DPtoLP(2));
pl.addPoint(getMapMode().DPtoLP(-2), getMapMode().DPtoLP(-2));
pl.addPoint(getMapMode().DPtoLP(0), getMapMode().DPtoLP(0));
df.setTemplate(pl);
df.setScale(getMapMode().DPtoLP(7), getMapMode().DPtoLP(3));
return df;
}
示例4: createTargetDecoration
import org.eclipse.draw2d.RotatableDecoration; //导入依赖的package包/类
/**
* @generated
*/
private RotatableDecoration createTargetDecoration() {
PolygonDecoration df = new PolygonDecoration();
df.setFill(true);
df.setBackgroundColor(ColorConstants.white);
PointList pl = new PointList();
pl.addPoint(getMapMode().DPtoLP(0), getMapMode().DPtoLP(0));
pl.addPoint(getMapMode().DPtoLP(-2), getMapMode().DPtoLP(2));
pl.addPoint(getMapMode().DPtoLP(-2), getMapMode().DPtoLP(-2));
pl.addPoint(getMapMode().DPtoLP(0), getMapMode().DPtoLP(0));
df.setTemplate(pl);
df.setScale(getMapMode().DPtoLP(7), getMapMode().DPtoLP(3));
return df;
}
示例5: setMiddleDecoration
import org.eclipse.draw2d.RotatableDecoration; //导入依赖的package包/类
/**
* Sets the decoration to be used at the middle of the {@link Connection}.
*
* @param dec
* the new decoration
*/
public void setMiddleDecoration(RotatableDecoration dec) {
if (middleDec == dec)
return;
if (middleDec != null)
remove(middleDec);
middleDec = dec;
if (middleDec != null) {
add(middleDec, new NodeConnectionLocator(this, ConnectionLocator.MIDDLE));
}
}
示例6: createTargetDecoration
import org.eclipse.draw2d.RotatableDecoration; //导入依赖的package包/类
/**
* @generated
*/
private RotatableDecoration createTargetDecoration() {
PolygonDecoration df = new PolygonDecoration();
df.setFill(true);
df.setLineWidth(2);
df.setBackgroundColor(ColorConstants.white);
PointList pl = new PointList();
pl.addPoint(getMapMode().DPtoLP(0), getMapMode().DPtoLP(0));
pl.addPoint(getMapMode().DPtoLP(-2), getMapMode().DPtoLP(2));
pl.addPoint(getMapMode().DPtoLP(-2), getMapMode().DPtoLP(-2));
df.setTemplate(pl);
df.setScale(getMapMode().DPtoLP(7), getMapMode().DPtoLP(3));
return df;
}
示例7: createTargetDecoration
import org.eclipse.draw2d.RotatableDecoration; //导入依赖的package包/类
/**
* @generated
*/
private RotatableDecoration createTargetDecoration() {
PolylineDecoration df = new PolylineDecoration();
df.setLineWidth(3);
df.setLineStyle(Graphics.LINE_DASH);
return df;
}
示例8: createTargetDecoration
import org.eclipse.draw2d.RotatableDecoration; //导入依赖的package包/类
/**
* @generated
*/
private RotatableDecoration createTargetDecoration() {
PolygonDecoration df = new PolygonDecoration();
df.setFill(true);
PointList pl = new PointList();
pl.addPoint(getMapMode().DPtoLP(-1), getMapMode().DPtoLP(1));
pl.addPoint(getMapMode().DPtoLP(0), getMapMode().DPtoLP(0));
pl.addPoint(getMapMode().DPtoLP(-1), getMapMode().DPtoLP(-1));
pl.addPoint(getMapMode().DPtoLP(-2), getMapMode().DPtoLP(0));
pl.addPoint(getMapMode().DPtoLP(-1), getMapMode().DPtoLP(1));
df.setTemplate(pl);
df.setScale(getMapMode().DPtoLP(7), getMapMode().DPtoLP(3));
return df;
}
示例9: createTargetDecoration
import org.eclipse.draw2d.RotatableDecoration; //导入依赖的package包/类
/**
* @generated
*/
private RotatableDecoration createTargetDecoration() {
PolygonDecoration df = new PolygonDecoration();
df.setFill(true);
df.setBackgroundColor(ColorConstants.white);
PointList pl = new PointList();
pl.addPoint(getMapMode().DPtoLP(0), getMapMode().DPtoLP(1));
pl.addPoint(getMapMode().DPtoLP(-1), getMapMode().DPtoLP(1));
pl.addPoint(getMapMode().DPtoLP(-1), getMapMode().DPtoLP(-1));
pl.addPoint(getMapMode().DPtoLP(0), getMapMode().DPtoLP(-1));
pl.addPoint(getMapMode().DPtoLP(0), getMapMode().DPtoLP(1));
df.setTemplate(pl);
df.setScale(getMapMode().DPtoLP(7), getMapMode().DPtoLP(3));
return df;
}
示例10: createTargetDecoration
import org.eclipse.draw2d.RotatableDecoration; //导入依赖的package包/类
/**
* @generated
*/
private RotatableDecoration createTargetDecoration() {
PolygonDecoration df = new PolygonDecoration();
df.setLineWidth(1);
// sets a triangular background color in white
df.setBackgroundColor(Display.getDefault().getSystemColor(SWT.COLOR_WHITE));
return df;
}
示例11: getSourceDecoration
import org.eclipse.draw2d.RotatableDecoration; //导入依赖的package包/类
public RotatableDecoration getSourceDecoration() {
return sourceDecoration;
}
示例12: getTargetDecoration
import org.eclipse.draw2d.RotatableDecoration; //导入依赖的package包/类
public RotatableDecoration getTargetDecoration() {
return targetDecoration;
}
示例13: getSourceDecoration
import org.eclipse.draw2d.RotatableDecoration; //导入依赖的package包/类
public RotatableDecoration getSourceDecoration() {
return sourceDecoration;
}
示例14: getTargetDecoration
import org.eclipse.draw2d.RotatableDecoration; //导入依赖的package包/类
public RotatableDecoration getTargetDecoration() {
return targetDecoration;
}
示例15: getInnerDecoration
import org.eclipse.draw2d.RotatableDecoration; //导入依赖的package包/类
private RotatableDecoration getInnerDecoration() {
PolygonDecoration srcpd = new PolygonDecoration();
srcpd.setTemplate(JOINDECORATOR);
srcpd.setBackgroundColor(ColorConstants.black);
return srcpd;
}