Update of /cvsroot/tail/Tail/src/java/net/sf/tail/graphics/forms
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv4761/src/java/net/sf/tail/graphics/forms
Modified Files:
ShapeFactory.java
Log Message:
problemas com o cvs
Index: ShapeFactory.java
===================================================================
RCS file: /cvsroot/tail/Tail/src/java/net/sf/tail/graphics/forms/ShapeFactory.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ShapeFactory.java 7 Jul 2007 18:45:23 -0000 1.1
--- ShapeFactory.java 25 Aug 2007 12:30:00 -0000 1.2
***************
*** 6,20 ****
public class ShapeFactory {
! public static Polygon getUpperArrow(){
! return new Polygon(new int[]{0,3,1,1,-1,-1,-3},new int[]{-4,-11,-11,-17,-17,-11,-11},7);
}
!
! public static Polygon getDownArrow(){
! return new Polygon(new int[]{0,3,1,1,-1,-1,-3},new int[]{4,11,11,17,17,11,11},7);
}
public static Shape getPoint() {
! return new Polygon(new int[]{0,1,0,-1},new int[]{1,1,-1,-1},4);
}
!
}
--- 6,20 ----
public class ShapeFactory {
! public static Polygon getUpperArrow() {
! return new Polygon(new int[] { 0, 3, 1, 1, -1, -1, -3 }, new int[] { -4, -11, -11, -17, -17, -11, -11 }, 7);
}
!
! public static Polygon getDownArrow() {
! return new Polygon(new int[] { 0, 3, 1, 1, -1, -1, -3 }, new int[] { 4, 11, 11, 17, 17, 11, 11 }, 7);
}
public static Shape getPoint() {
! return new Polygon(new int[] { 0, 1, 0, -1 }, new int[] { 1, 1, -1, -1 }, 4);
}
!
}
|