update copyright
[fedora-idea.git] / plugins / devkit / src / dom / Shortcut.java
blob0b4fb7d6da29848f437f6e3a5f8b867536938a52
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 // Generated on Wed Nov 07 17:26:02 MSK 2007
18 // DTD/Schema : plugin.dtd
20 package org.jetbrains.idea.devkit.dom;
22 import com.intellij.util.xml.DomElement;
23 import com.intellij.util.xml.GenericAttributeValue;
24 import com.intellij.util.xml.Required;
25 import org.jetbrains.annotations.NotNull;
27 /**
28 * plugin.dtd:shortcut interface.
30 public interface Shortcut extends DomElement {
32 /**
33 * Returns the value of the first-keystroke child.
34 * Attribute first-keystroke
35 * @return the value of the first-keystroke child.
37 @NotNull
38 @Required
39 GenericAttributeValue<String> getFirstKeystroke();
42 /**
43 * Returns the value of the keymap child.
44 * Attribute keymap
45 * @return the value of the keymap child.
47 @NotNull
48 @Required
49 GenericAttributeValue<String> getKeymap();
52 /**
53 * Returns the value of the second-keystroke child.
54 * Attribute second-keystroke
55 * @return the value of the second-keystroke child.
57 @NotNull
58 GenericAttributeValue<String> getSecondKeystroke();