Ignore:
Timestamp:
2017-02-02T00:08:08+01:00 (8 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/MissingGlyph.java

    r8084 r11525  
    7373    }
    7474
     75    @Override
    7576    public String getTagName()
    7677    {
     
    8283     * each child tag that has been processed
    8384     */
     85    @Override
    8486    public void loaderAddChild(SVGLoaderHelper helper, SVGElement child) throws SVGElementException
    8587    {
     
    8789    }
    8890
     91    @Override
    8992    protected void build() throws SVGException
    9093    {
     
    153156    }
    154157
     158    @Override
    155159    public void render(Graphics2D g) throws SVGException
    156160    {
     
    162166        }
    163167
    164         Iterator it = children.iterator();
     168        Iterator<SVGElement> it = children.iterator();
    165169        while (it.hasNext())
    166170        {
    167             SVGElement ele = (SVGElement) it.next();
     171            SVGElement ele = it.next();
    168172            if (ele instanceof RenderableElement)
    169173            {
     
    212216    }
    213217
     218    @Override
    214219    public Shape getShape()
    215220    {
     
    221226    }
    222227
     228    @Override
    223229    public Rectangle2D getBoundingBox() throws SVGException
    224230    {
     
    237243     * update
    238244     */
     245    @Override
    239246    public boolean updateTime(double curTime) throws SVGException
    240247    {
Note: See TracChangeset for help on using the changeset viewer.