source: trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/guimodel/IGUIElementFactory.java @ 1490

Last change on this file since 1490 was 927, checked in by sherbold, 12 years ago
  • added copyright under the Apache License, Version 2.0
File size: 1.4 KB
RevLine 
[927]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.
14
[922]15package de.ugoe.cs.autoquest.eventcore.guimodel;
[576]16
17/**
18 * <p>
[831]19 * Common interface for GUI element factories.
[576]20 * </p>
21 *
[831]22 * @version 1.0
23 * @author Patrick Harms
[576]24 */
25public interface IGUIElementFactory {
26
27    /**
28     * <p>
[831]29     * Instantiates a new {@link IGUIElement} from a given specification.
[576]30     * </p>
[831]31     *
[576]32     * @param specification
[831]33     *            specification of the new GUI element
34     * @param parent
35     *            parent of the new GUI element
36     * @return created GUI element
37     * @throws GUIModelConfigurationException
38     *             thrown if there is a problem during the creation of the GUI element
[576]39     */
[603]40    public IGUIElement instantiateGUIElement(IGUIElementSpec specification, IGUIElement parent)
[596]41        throws GUIModelConfigurationException;
[576]42   
43}
Note: See TracBrowser for help on using the repository browser.