Ignore:
Timestamp:
02/01/13 11:58:22 (11 years ago)
Author:
pharms
Message:
  • added comments
File:
1 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. 
    114 
    215package de.ugoe.cs.autoquest.plugin.html.eventcore; 
     
    1326import de.ugoe.cs.util.console.Console; 
    1427 
     28/** 
     29 * <p> 
     30 * TODO comment 
     31 * </p> 
     32 *  
     33 * @author Patrick Harms 
     34 */ 
    1535public class HTMLEventTypeFactory { 
     36     
     37    /**  */ 
    1638    private static HTMLEventTypeFactory instance = new HTMLEventTypeFactory(); 
    1739 
     40    /** 
     41     * <p> 
     42     * TODO: comment 
     43     * </p> 
     44     * 
     45     */ 
    1846    private HTMLEventTypeFactory() {} 
    1947 
     48    /** 
     49     * <p> 
     50     * TODO: comment 
     51     * </p> 
     52     * 
     53     * @return 
     54     */ 
    2055    public static HTMLEventTypeFactory getInstance() { 
    2156        return instance; 
    2257    } 
    2358 
     59    /** 
     60     * <p> 
     61     * TODO: comment 
     62     * </p> 
     63     * 
     64     * @param eventName 
     65     * @param eventParameters 
     66     * @return 
     67     */ 
    2468    public IEventType getEventType(String eventName, Map<String, String> eventParameters) { 
    2569        IInteraction result = null; 
Note: See TracChangeset for help on using the changeset viewer.