update copyright
[fedora-idea.git] / java / idea-ui / src / com / intellij / facet / impl / ui / libraries / versions / LibrariesConfigurationInfo.java
blobb898d1172a98151e5f8424adb6ca458fe706c543
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.
16 package com.intellij.facet.impl.ui.libraries.versions;
18 import com.intellij.util.xmlb.annotations.AbstractCollection;
19 import com.intellij.util.xmlb.annotations.Attribute;
20 import com.intellij.util.xmlb.annotations.Property;
22 public class LibrariesConfigurationInfo {
24 @Property(surroundWithTag = false)
25 @AbstractCollection(surroundWithTag = false)
26 public LibraryConfigurationInfo[] myInfos;
28 @Attribute("default-version")
29 public String myDefaultVersion;
31 @Attribute("default-ri")
32 public String myDefaultRI;
34 @Attribute("default-download-url")
35 public String myDefaultDownloadUrl;
37 @Attribute("default-presentation-url")
38 public String myDefaultPresentationUrl;
40 public LibraryConfigurationInfo[] getLibraryConfigurationInfos() {
41 return myInfos;
44 public String getDefaultVersion() {
45 return myDefaultVersion;
48 public String getDefaultDownloadUrl() {
49 return myDefaultDownloadUrl;
52 public String getDefaultPresentationUrl() {
53 return myDefaultPresentationUrl;
56 public String getDefaultRI() {
57 return myDefaultRI;