Ignore:
Timestamp:
09/12/11 18:11:46 (13 years ago)
Author:
vmipsl
Message:

Servlet _ Contour en cours

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ether_megapoli/trunk/service/test/com/ether/SGTTest.java

    r188 r191  
    863863//    } 
    864864 
     865    @NotNull 
     866    public LineAttribute createLineAttribute( final boolean markPoint ) 
     867    { 
     868        final LineAttribute lineAttribute = new LineAttribute( LineAttribute.SOLID, Color.red ); 
     869        if( markPoint ) 
     870        { 
     871            lineAttribute.setStyle( LineAttribute.MARK ); 
     872            // int to display cross 
     873            lineAttribute.setMark( 2 ); 
     874        } 
     875        return lineAttribute; 
     876    } 
     877 
     878 
    865879    // Dimensions of the jPanes 
    866880    private static final int MAIN_WIDTH = 1000; 
Note: See TracChangeset for help on using the changeset viewer.