Changeset 1051 for trunk/autoquest-plugin-html/src/main
- Timestamp:
- 02/01/13 11:56:14 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/NewHTMLLogParser.java
r1047 r1051 1 // Copyright 2012 Georg-August-Universität Göttingen, Germany 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 1 14 2 15 package de.ugoe.cs.autoquest.plugin.html; … … 222 235 } 223 236 237 /* (non-Javadoc) 238 * @see org.xml.sax.helpers.DefaultHandler#startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes) 239 */ 224 240 @Override 225 241 public void startElement(String uri, String localName, String qName, Attributes atts) … … 270 286 } 271 287 288 /* (non-Javadoc) 289 * @see org.xml.sax.helpers.DefaultHandler#endElement(java.lang.String, java.lang.String, java.lang.String) 290 */ 272 291 @Override 273 292 public void endElement(String uri, String localName, String qName) throws SAXException { … … 295 314 event.setTimestamp(currentEventTimestamp); 296 315 HTMLGUIElement currentEventTarget = (HTMLGUIElement) event.getTarget(); 297 currentEventTarget.mark AsUsed();316 currentEventTarget.markUsed(); 298 317 currentSequence.add(event); 299 318
Note: See TracChangeset
for help on using the changeset viewer.