update copyright
[fedora-idea.git] / plugins / devkit / src / dom / Vendor.java
blobb0eb0251d57f302be4fb4185da713815bdb0103d
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 org.jetbrains.annotations.NotNull;
26 /**
27 * plugin.dtd:vendor interface.
28 * Type vendor documentation
29 * <pre>
30 * <vendor> tag now could have 'url', 'email' and 'logo' attributes;
31 * 'logo' should contain path to a 16 x 16 icon that will appear near the plugin name in the IDEA Welcome Screen
32 * </pre>
34 public interface Vendor extends DomElement {
36 /**
37 * Returns the value of the simple content.
38 * @return the value of the simple content.
40 @NotNull
41 String getValue();
42 /**
43 * Sets the value of the simple content.
44 * @param value the new value to set
46 void setValue(String value);
49 /**
50 * Returns the value of the email child.
51 * Attribute email
52 * @return the value of the email child.
54 @NotNull
55 GenericAttributeValue<String> getEmail();
58 /**
59 * Returns the value of the url child.
60 * Attribute url
61 * @return the value of the url child.
63 @NotNull
64 GenericAttributeValue<String> getUrl();
67 /**
68 * Returns the value of the logo child.
69 * Attribute logo
70 * @return the value of the logo child.
72 @NotNull
73 GenericAttributeValue<String> getLogo();