Ignore:
Timestamp:
2017-02-02T00:08:08+01:00 (9 years ago)
Author:
Don-vip
Message:

see #14319 - update to latest version of svgSalamander (2017-01-07, patched)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/com/kitfox/svg/Marker.java

    r8084 r11525  
    6161    boolean markerUnitsStrokeWidth = true; //if set to false 'userSpaceOnUse' is assumed
    6262
     63    @Override
    6364    public String getTagName()
    6465    {
     
    6667    }
    6768
     69    @Override
    6870    protected void build() throws SVGException
    6971    {
     
    131133    }
    132134
     135    @Override
    133136    protected boolean outsideClip(Graphics2D g) throws SVGException
    134137    {
     
    144147    }
    145148
     149    @Override
    146150    public void render(Graphics2D g) throws SVGException
    147151    {
     
    173177    }
    174178
     179    @Override
    175180    public Shape getShape()
    176181    {
     
    179184    }
    180185
     186    @Override
    181187    public Rectangle2D getBoundingBox() throws SVGException
    182188    {
     
    192198     * update
    193199     */
     200    @Override
    194201    public boolean updateTime(double curTime) throws SVGException
    195202    {
     
    229236    {
    230237
    231         private ArrayList markerList = new ArrayList();
     238        private ArrayList<MarkerPos> markerList = new ArrayList<MarkerPos>();
    232239        boolean started = false;
    233240
     
    362369         * @return the markerList
    363370         */
    364         public ArrayList getMarkerList()
     371        public ArrayList<MarkerPos> getMarkerList()
    365372        {
    366373            return markerList;
Note: See TracChangeset for help on using the changeset viewer.