update copyright
[fedora-idea.git] / plugins / maven / src / main / java / org / jetbrains / idea / maven / dom / model / MavenDomIssueManagement.java
blob6e958f9b6d7218548d1c62581b44a500152f5f74
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 Mon Mar 17 18:02:09 MSK 2008
18 // DTD/Schema : http://maven.apache.org/POM/4.0.0
20 package org.jetbrains.idea.maven.dom.model;
22 import com.intellij.util.xml.Convert;
23 import com.intellij.util.xml.GenericDomValue;
24 import org.jetbrains.annotations.NotNull;
25 import org.jetbrains.idea.maven.dom.MavenDomElement;
26 import org.jetbrains.idea.maven.dom.converters.MavenUrlConverter;
28 /**
29 * http://maven.apache.org/POM/4.0.0:IssueManagement interface.
30 * <pre>
31 * <h3>Type http://maven.apache.org/POM/4.0.0:IssueManagement documentation</h3>
32 * 4.0.0
33 * </pre>
35 public interface MavenDomIssueManagement extends MavenDomElement {
36 /**
37 * Returns the value of the system child.
38 * <pre>
39 * <h3>Element http://maven.apache.org/POM/4.0.0:system documentation</h3>
40 * 4.0.0
41 * </pre>
43 * @return the value of the system child.
45 @NotNull
46 GenericDomValue<String> getSystem();
48 /**
49 * Returns the value of the url child.
50 * <pre>
51 * <h3>Element http://maven.apache.org/POM/4.0.0:url documentation</h3>
52 * 4.0.0
53 * </pre>
55 * @return the value of the url child.
57 @NotNull
58 @Convert(MavenUrlConverter.class)
59 GenericDomValue<String> getUrl();