~testplan-team/testplan/source-collection

« back to all changes in this revision

Viewing changes to htmlunit-2.4/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/HTMLOptGroupElement.java

  • Committer: edA-qa mort-ora-y
  • Date: 2010-04-07 10:54:57 UTC
  • Revision ID: eda-qa@disemia.com-20100407105457-g46bvbsrjqtjujab
updating hmltunit src

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (c) 2002-2008 Gargoyle Software Inc.
3
 
 *
4
 
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 
 * you may not use this file except in compliance with the License.
6
 
 * You may obtain a copy of the License at
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
 
 */
15
 
package com.gargoylesoftware.htmlunit.javascript.host;
16
 
 
17
 
/**
18
 
 * The JavaScript object "HTMLOptGroupElement".
19
 
 *
20
 
 * @version $Revision: 3026 $
21
 
 * @author Ahmed Ashour
22
 
 */
23
 
public class HTMLOptGroupElement extends HTMLElement {
24
 
 
25
 
    private static final long serialVersionUID = 6950601049517489309L;
26
 
 
27
 
    /**
28
 
     * Create an instance.
29
 
     */
30
 
    public HTMLOptGroupElement() {
31
 
        // Empty.
32
 
    }
33
 
 
34
 
}