Changeset 1054 for trunk/autoquest-plugin-html/src/main/java
- Timestamp:
- 02/01/13 11:58:22 (12 years ago)
- Location:
- trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/eventcore/HTMLEventTypeFactory.java
r1047 r1054 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.eventcore; … … 13 26 import de.ugoe.cs.util.console.Console; 14 27 28 /** 29 * <p> 30 * TODO comment 31 * </p> 32 * 33 * @author Patrick Harms 34 */ 15 35 public class HTMLEventTypeFactory { 36 37 /** */ 16 38 private static HTMLEventTypeFactory instance = new HTMLEventTypeFactory(); 17 39 40 /** 41 * <p> 42 * TODO: comment 43 * </p> 44 * 45 */ 18 46 private HTMLEventTypeFactory() {} 19 47 48 /** 49 * <p> 50 * TODO: comment 51 * </p> 52 * 53 * @return 54 */ 20 55 public static HTMLEventTypeFactory getInstance() { 21 56 return instance; 22 57 } 23 58 59 /** 60 * <p> 61 * TODO: comment 62 * </p> 63 * 64 * @param eventName 65 * @param eventParameters 66 * @return 67 */ 24 68 public IEventType getEventType(String eventName, Map<String, String> eventParameters) { 25 69 IInteraction result = null; -
trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLGUIElementSpec.java
r1047 r1054 70 70 } 71 71 72 /** 73 * <p> 74 * TODO: comment 75 * </p> 76 */ 72 77 @Override 73 78 public String[] getTypeHierarchy() {
Note: See TracChangeset
for help on using the changeset viewer.