Changeset 10865 in josm
- Timestamp:
- 2016-08-21T03:15:12+02:00 (8 years ago)
- Location:
- trunk/src/com
- Files:
-
- 10 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/com/kitfox/svg/Filter.java
r8084 r10865 76 76 } 77 77 78 /**79 * Called after the start element but before the end element to indicate80 * each child tag that has been processed81 */82 public void loaderAddChild(SVGLoaderHelper helper, SVGElement child) throws SVGElementException83 {84 super.loaderAddChild(helper, child);85 86 if (child instanceof FilterEffects)87 {88 filterEffects.add(child);89 }90 }91 92 78 protected void build() throws SVGException 93 79 { -
trunk/src/com/kitfox/svg/SVGUniverse.java
r10746 r10865 131 131 132 132 /** 133 * Returns the current animation time in milliseconds.134 */135 public double getCurTime()136 {137 return curTime;138 }139 140 public void setCurTime(double curTime)141 {142 double oldTime = this.curTime;143 this.curTime = curTime;144 changes.firePropertyChange("curTime", new Double(oldTime), new Double(curTime));145 }146 147 /**148 * Updates all time influenced style and presentation attributes in all SVG149 * documents in this universe.150 */151 public void updateTime() throws SVGException152 {153 for (Iterator it = loadedDocs.values().iterator(); it.hasNext();)154 {155 SVGDiagram dia = (SVGDiagram) it.next();156 dia.updateTime(curTime);157 }158 }159 160 /**161 133 * Called by the Font element to let the universe know that a font has been 162 134 * loaded and is available.
Note:
See TracChangeset
for help on using the changeset viewer.